react-magma-icons 3.1.0 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/categories.esm.js +3 -3
- package/dist/categories.esm.js.map +1 -1
- package/dist/icons/Actions/QuestionMarkIcon.d.ts +7 -0
- package/dist/icons/Actions/QuestionMarkIcon.esm.js +19 -0
- package/dist/icons/Actions/QuestionMarkIcon.esm.js.map +1 -0
- package/dist/icons/Actions/index.d.ts +1 -0
- package/dist/icons/Custom/MediaIcon.d.ts +7 -0
- package/dist/icons/Custom/MediaIcon.esm.js +19 -0
- package/dist/icons/Custom/MediaIcon.esm.js.map +1 -0
- package/dist/icons/Custom/NotebookIcon.d.ts +7 -0
- package/dist/icons/Custom/NotebookIcon.esm.js +19 -0
- package/dist/icons/Custom/NotebookIcon.esm.js.map +1 -0
- package/dist/icons/Custom/index.d.ts +2 -0
- package/dist/icons/Device/PhishingIcon.d.ts +7 -0
- package/dist/icons/Device/PhishingIcon.esm.js +19 -0
- package/dist/icons/Device/PhishingIcon.esm.js.map +1 -0
- package/dist/icons/Device/TargetIcon.d.ts +7 -0
- package/dist/icons/Device/TargetIcon.esm.js +19 -0
- package/dist/icons/Device/TargetIcon.esm.js.map +1 -0
- package/dist/icons/Device/index.d.ts +2 -0
- package/dist/index.esm.js +5 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/react-magma-icons.cjs.development.js +2938 -2858
- package/dist/react-magma-icons.cjs.development.js.map +1 -1
- package/dist/react-magma-icons.cjs.production.min.js +1 -1
- package/dist/react-magma-icons.cjs.production.min.js.map +1 -1
- package/package.json +1 -1
- package/src/categories.ts +5 -0
- package/src/icons/Actions/QuestionMarkIcon.tsx +19 -0
- package/src/icons/Actions/index.ts +1 -0
- package/src/icons/Custom/MediaIcon.tsx +18 -0
- package/src/icons/Custom/NotebookIcon.tsx +18 -0
- package/src/icons/Custom/index.ts +2 -0
- package/src/icons/Device/PhishingIcon.tsx +18 -0
- package/src/icons/Device/TargetIcon.tsx +18 -0
- package/src/icons/Device/index.ts +2 -0
- package/src/svg/icons/Actions/question_mark.svg +1 -0
- package/src/svg/icons/Custom/media.svg +3 -0
- package/src/svg/icons/Custom/notebook.svg +3 -0
- package/src/svg/icons/Device/phishing.svg +1 -0
- package/src/svg/icons/Device/target.svg +1 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { renderIcon } from '../../SvgIcon.esm.js';
|
|
2
|
+
|
|
3
|
+
/******************************************************
|
|
4
|
+
* This file was created by scripts/generate.js as part
|
|
5
|
+
* of the build process. Do not edit this file directly.
|
|
6
|
+
******************************************************/
|
|
7
|
+
var iconType = {
|
|
8
|
+
viewBox: "0 0 24 24",
|
|
9
|
+
paths: [{
|
|
10
|
+
d: "M12 1c.6074 0 1.0994.4923 1.0996 1.0996v5.6387c.4035.1038.7838.265 1.1338.4717l3.9893-3.9883c.4295-.4295 1.1261-.4296 1.5556 0 .4295.4295.4295 1.126 0 1.5556l-3.9892 3.9883c.207.3503.3687.7308.4726 1.1348h5.6387C22.5077 10.9006 23 11.3926 23 12c0 .6074-.4923 1.0994-1.0996 1.0996h-5.6387c-.1038.4037-.2658.7837-.4726 1.1338l3.9892 3.9893c.4295.4295.4296 1.1261 0 1.5556-.4295.4295-1.1261.4295-1.5556 0l-3.9893-3.9892c-.3501.2068-.7301.3688-1.1338.4726v5.6387C13.0994 22.5077 12.6074 23 12 23c-.6074 0-1.0994-.4923-1.0996-1.0996v-5.6387a4.3701 4.3701 0 01-1.1348-.4726l-3.9883 3.9892c-.4295.4295-1.126.4296-1.5556 0-.4296-.4295-.4295-1.1261 0-1.5556L8.21 14.2334a4.3718 4.3718 0 01-.4717-1.1338H2.0996C1.4923 13.0994 1 12.6074 1 12c0-.6074.4923-1.0994 1.0996-1.0996h5.6387A4.372 4.372 0 018.21 9.7656L4.2217 5.7773c-.4295-.4295-.4295-1.126 0-1.5556.4295-.4296 1.126-.4295 1.5556 0L9.7656 8.21a4.372 4.372 0 011.1348-.4717V2.0996C10.9006 1.4923 11.3926 1 12 1zm0 8.7998c-1.215 0-2.2002.9852-2.2002 2.2002 0 1.215.9852 2.2002 2.2002 2.2002 1.215 0 2.2002-.9852 2.2002-2.2002 0-1.215-.9852-2.2002-2.2002-2.2002z"
|
|
11
|
+
}],
|
|
12
|
+
circles: []
|
|
13
|
+
};
|
|
14
|
+
var MediaIcon = function MediaIcon(props) {
|
|
15
|
+
return renderIcon(props, iconType);
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export { MediaIcon };
|
|
19
|
+
//# sourceMappingURL=MediaIcon.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MediaIcon.esm.js","sources":["../../../src/icons/Custom/MediaIcon.tsx"],"sourcesContent":["/******************************************************\n * This file was created by scripts/generate.js as part\n * of the build process. Do not edit this file directly.\n ******************************************************/\n\nimport { IconProps } from \"../../IconProps\";\nimport { renderIcon } from \"../../SvgIcon\";\nconst iconType = {\n viewBox: \"0 0 24 24\",\n paths: [\n {\n d: \"M12 1c.6074 0 1.0994.4923 1.0996 1.0996v5.6387c.4035.1038.7838.265 1.1338.4717l3.9893-3.9883c.4295-.4295 1.1261-.4296 1.5556 0 .4295.4295.4295 1.126 0 1.5556l-3.9892 3.9883c.207.3503.3687.7308.4726 1.1348h5.6387C22.5077 10.9006 23 11.3926 23 12c0 .6074-.4923 1.0994-1.0996 1.0996h-5.6387c-.1038.4037-.2658.7837-.4726 1.1338l3.9892 3.9893c.4295.4295.4296 1.1261 0 1.5556-.4295.4295-1.1261.4295-1.5556 0l-3.9893-3.9892c-.3501.2068-.7301.3688-1.1338.4726v5.6387C13.0994 22.5077 12.6074 23 12 23c-.6074 0-1.0994-.4923-1.0996-1.0996v-5.6387a4.3701 4.3701 0 01-1.1348-.4726l-3.9883 3.9892c-.4295.4295-1.126.4296-1.5556 0-.4296-.4295-.4295-1.1261 0-1.5556L8.21 14.2334a4.3718 4.3718 0 01-.4717-1.1338H2.0996C1.4923 13.0994 1 12.6074 1 12c0-.6074.4923-1.0994 1.0996-1.0996h5.6387A4.372 4.372 0 018.21 9.7656L4.2217 5.7773c-.4295-.4295-.4295-1.126 0-1.5556.4295-.4296 1.126-.4295 1.5556 0L9.7656 8.21a4.372 4.372 0 011.1348-.4717V2.0996C10.9006 1.4923 11.3926 1 12 1zm0 8.7998c-1.215 0-2.2002.9852-2.2002 2.2002 0 1.215.9852 2.2002 2.2002 2.2002 1.215 0 2.2002-.9852 2.2002-2.2002 0-1.215-.9852-2.2002-2.2002-2.2002z\",\n },\n ],\n circles: [],\n};\n\nexport const MediaIcon = (props: IconProps) => renderIcon(props, iconType);\n"],"names":["iconType","viewBox","paths","d","circles","MediaIcon","props","renderIcon"],"mappings":";;AAAA;;;;AAOA,IAAMA,QAAQ,GAAG;EACfC,OAAO,EAAE,WAAW;EACpBC,KAAK,EAAE,CACL;IACEC,CAAC,EAAE;GACJ,CACF;EACDC,OAAO,EAAE;CACV;IAEYC,SAAS,GAAG,SAAZA,SAAS,CAAIC,KAAgB;EAAA,OAAKC,UAAU,CAACD,KAAK,EAAEN,QAAQ,CAAC;AAAA;;;;"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/******************************************************
|
|
2
|
+
* This file was created by scripts/generate.js as part
|
|
3
|
+
* of the build process. Do not edit this file directly.
|
|
4
|
+
******************************************************/
|
|
5
|
+
/// <reference types="react" />
|
|
6
|
+
import { IconProps } from "../../IconProps";
|
|
7
|
+
export declare const NotebookIcon: (props: IconProps) => JSX.Element | null;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { renderIcon } from '../../SvgIcon.esm.js';
|
|
2
|
+
|
|
3
|
+
/******************************************************
|
|
4
|
+
* This file was created by scripts/generate.js as part
|
|
5
|
+
* of the build process. Do not edit this file directly.
|
|
6
|
+
******************************************************/
|
|
7
|
+
var iconType = {
|
|
8
|
+
viewBox: "0 0 24 24",
|
|
9
|
+
paths: [{
|
|
10
|
+
d: "M17.9982 2c1.1 0 2 .9 2 2v16c0 1.1-.9 2-2 2h-12c-1.1 0-2-.9-2-2L4 19H2.0001c-.0001-.5.0003.044 0-.7842V17H4l-.0019-2H2c0-.5.0004.044.0001-.7842L2 13h1.9981v-2H2c0-.2158.0004.044.0001-.7842L2 9h1.9981V7h-1.998c-.0001-.2158.0003.044 0-.7842L2 5h1.9981V4c0-1.1.9-2 2-2h12.0001zM8.0001 5.7158v4h8v-4h-8z"
|
|
11
|
+
}],
|
|
12
|
+
circles: []
|
|
13
|
+
};
|
|
14
|
+
var NotebookIcon = function NotebookIcon(props) {
|
|
15
|
+
return renderIcon(props, iconType);
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export { NotebookIcon };
|
|
19
|
+
//# sourceMappingURL=NotebookIcon.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NotebookIcon.esm.js","sources":["../../../src/icons/Custom/NotebookIcon.tsx"],"sourcesContent":["/******************************************************\n * This file was created by scripts/generate.js as part\n * of the build process. Do not edit this file directly.\n ******************************************************/\n\nimport { IconProps } from \"../../IconProps\";\nimport { renderIcon } from \"../../SvgIcon\";\nconst iconType = {\n viewBox: \"0 0 24 24\",\n paths: [\n {\n d: \"M17.9982 2c1.1 0 2 .9 2 2v16c0 1.1-.9 2-2 2h-12c-1.1 0-2-.9-2-2L4 19H2.0001c-.0001-.5.0003.044 0-.7842V17H4l-.0019-2H2c0-.5.0004.044.0001-.7842L2 13h1.9981v-2H2c0-.2158.0004.044.0001-.7842L2 9h1.9981V7h-1.998c-.0001-.2158.0003.044 0-.7842L2 5h1.9981V4c0-1.1.9-2 2-2h12.0001zM8.0001 5.7158v4h8v-4h-8z\",\n },\n ],\n circles: [],\n};\n\nexport const NotebookIcon = (props: IconProps) => renderIcon(props, iconType);\n"],"names":["iconType","viewBox","paths","d","circles","NotebookIcon","props","renderIcon"],"mappings":";;AAAA;;;;AAOA,IAAMA,QAAQ,GAAG;EACfC,OAAO,EAAE,WAAW;EACpBC,KAAK,EAAE,CACL;IACEC,CAAC,EAAE;GACJ,CACF;EACDC,OAAO,EAAE;CACV;IAEYC,YAAY,GAAG,SAAfA,YAAY,CAAIC,KAAgB;EAAA,OAAKC,UAAU,CAACD,KAAK,EAAEN,QAAQ,CAAC;AAAA;;;;"}
|
|
@@ -17,8 +17,10 @@ export { GithubIcon } from "./GithubIcon";
|
|
|
17
17
|
export { LatePenaltyIcon } from "./LatePenaltyIcon";
|
|
18
18
|
export { LightbulbOnIcon } from "./LightbulbOnIcon";
|
|
19
19
|
export { ManualGradedIcon } from "./ManualGradedIcon";
|
|
20
|
+
export { MediaIcon } from "./MediaIcon";
|
|
20
21
|
export { MtIcon } from "./MtIcon";
|
|
21
22
|
export { NonMindtapActivityIcon } from "./NonMindtapActivityIcon";
|
|
23
|
+
export { NotebookIcon } from "./NotebookIcon";
|
|
22
24
|
export { PracticeIcon } from "./PracticeIcon";
|
|
23
25
|
export { ProjectWfIcon } from "./ProjectWfIcon";
|
|
24
26
|
export { TasksWfIcon } from "./TasksWfIcon";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/******************************************************
|
|
2
|
+
* This file was created by scripts/generate.js as part
|
|
3
|
+
* of the build process. Do not edit this file directly.
|
|
4
|
+
******************************************************/
|
|
5
|
+
/// <reference types="react" />
|
|
6
|
+
import { IconProps } from "../../IconProps";
|
|
7
|
+
export declare const PhishingIcon: (props: IconProps) => JSX.Element | null;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { renderIcon } from '../../SvgIcon.esm.js';
|
|
2
|
+
|
|
3
|
+
/******************************************************
|
|
4
|
+
* This file was created by scripts/generate.js as part
|
|
5
|
+
* of the build process. Do not edit this file directly.
|
|
6
|
+
******************************************************/
|
|
7
|
+
var iconType = {
|
|
8
|
+
viewBox: "0 -960 960 960",
|
|
9
|
+
paths: [{
|
|
10
|
+
d: "M440-120q-100 0-170-70t-70-170v-192q0-14 12-19t22 5l138 138q11 11 11 27.5T372-372q-12 12-28.5 12T315-372l-35-35v47q0 66 47 113t113 47q66 0 113-47t47-113v-127q-36-14-58-44.5T520-600q0-38 22-68.5t58-44.5v-127q0-17 11.5-28.5T640-880q17 0 28.5 11.5T680-840v127q36 14 58 44.5t22 68.5q0 38-22 69t-58 44v127q0 100-70 170t-170 70zm200-440q17 0 28.5-11.5T680-600q0-17-11.5-28.5T640-640q-17 0-28.5 11.5T600-600q0 17 11.5 28.5T640-560zm0-40z"
|
|
11
|
+
}],
|
|
12
|
+
circles: []
|
|
13
|
+
};
|
|
14
|
+
var PhishingIcon = function PhishingIcon(props) {
|
|
15
|
+
return renderIcon(props, iconType);
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export { PhishingIcon };
|
|
19
|
+
//# sourceMappingURL=PhishingIcon.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PhishingIcon.esm.js","sources":["../../../src/icons/Device/PhishingIcon.tsx"],"sourcesContent":["/******************************************************\n * This file was created by scripts/generate.js as part\n * of the build process. Do not edit this file directly.\n ******************************************************/\n\nimport { IconProps } from \"../../IconProps\";\nimport { renderIcon } from \"../../SvgIcon\";\nconst iconType = {\n viewBox: \"0 -960 960 960\",\n paths: [\n {\n d: \"M440-120q-100 0-170-70t-70-170v-192q0-14 12-19t22 5l138 138q11 11 11 27.5T372-372q-12 12-28.5 12T315-372l-35-35v47q0 66 47 113t113 47q66 0 113-47t47-113v-127q-36-14-58-44.5T520-600q0-38 22-68.5t58-44.5v-127q0-17 11.5-28.5T640-880q17 0 28.5 11.5T680-840v127q36 14 58 44.5t22 68.5q0 38-22 69t-58 44v127q0 100-70 170t-170 70zm200-440q17 0 28.5-11.5T680-600q0-17-11.5-28.5T640-640q-17 0-28.5 11.5T600-600q0 17 11.5 28.5T640-560zm0-40z\",\n },\n ],\n circles: [],\n};\n\nexport const PhishingIcon = (props: IconProps) => renderIcon(props, iconType);\n"],"names":["iconType","viewBox","paths","d","circles","PhishingIcon","props","renderIcon"],"mappings":";;AAAA;;;;AAOA,IAAMA,QAAQ,GAAG;EACfC,OAAO,EAAE,gBAAgB;EACzBC,KAAK,EAAE,CACL;IACEC,CAAC,EAAE;GACJ,CACF;EACDC,OAAO,EAAE;CACV;IAEYC,YAAY,GAAG,SAAfA,YAAY,CAAIC,KAAgB;EAAA,OAAKC,UAAU,CAACD,KAAK,EAAEN,QAAQ,CAAC;AAAA;;;;"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/******************************************************
|
|
2
|
+
* This file was created by scripts/generate.js as part
|
|
3
|
+
* of the build process. Do not edit this file directly.
|
|
4
|
+
******************************************************/
|
|
5
|
+
/// <reference types="react" />
|
|
6
|
+
import { IconProps } from "../../IconProps";
|
|
7
|
+
export declare const TargetIcon: (props: IconProps) => JSX.Element | null;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { renderIcon } from '../../SvgIcon.esm.js';
|
|
2
|
+
|
|
3
|
+
/******************************************************
|
|
4
|
+
* This file was created by scripts/generate.js as part
|
|
5
|
+
* of the build process. Do not edit this file directly.
|
|
6
|
+
******************************************************/
|
|
7
|
+
var iconType = {
|
|
8
|
+
viewBox: "0 -960 960 960",
|
|
9
|
+
paths: [{
|
|
10
|
+
d: "M480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93zm0-80q-100 0-170-70t-70-170q0-100 70-170t170-70q100 0 170 70t70 170q0 100-70 170t-170 70zm0-80q66 0 113-47t47-113q0-66-47-113t-113-47q-66 0-113 47t-47 113q0 66 47 113t113 47zm0-80q-33 0-56.5-23.5T400-480q0-33 23.5-56.5T480-560q33 0 56.5 23.5T560-480q0 33-23.5 56.5T480-400z"
|
|
11
|
+
}],
|
|
12
|
+
circles: []
|
|
13
|
+
};
|
|
14
|
+
var TargetIcon = function TargetIcon(props) {
|
|
15
|
+
return renderIcon(props, iconType);
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
export { TargetIcon };
|
|
19
|
+
//# sourceMappingURL=TargetIcon.esm.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TargetIcon.esm.js","sources":["../../../src/icons/Device/TargetIcon.tsx"],"sourcesContent":["/******************************************************\n * This file was created by scripts/generate.js as part\n * of the build process. Do not edit this file directly.\n ******************************************************/\n\nimport { IconProps } from \"../../IconProps\";\nimport { renderIcon } from \"../../SvgIcon\";\nconst iconType = {\n viewBox: \"0 -960 960 960\",\n paths: [\n {\n d: \"M480-80q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93zm0-80q-100 0-170-70t-70-170q0-100 70-170t170-70q100 0 170 70t70 170q0 100-70 170t-170 70zm0-80q66 0 113-47t47-113q0-66-47-113t-113-47q-66 0-113 47t-47 113q0 66 47 113t113 47zm0-80q-33 0-56.5-23.5T400-480q0-33 23.5-56.5T480-560q33 0 56.5 23.5T560-480q0 33-23.5 56.5T480-400z\",\n },\n ],\n circles: [],\n};\n\nexport const TargetIcon = (props: IconProps) => renderIcon(props, iconType);\n"],"names":["iconType","viewBox","paths","d","circles","TargetIcon","props","renderIcon"],"mappings":";;AAAA;;;;AAOA,IAAMA,QAAQ,GAAG;EACfC,OAAO,EAAE,gBAAgB;EACzBC,KAAK,EAAE,CACL;IACEC,CAAC,EAAE;GACJ,CACF;EACDC,OAAO,EAAE;CACV;IAEYC,UAAU,GAAG,SAAbA,UAAU,CAAIC,KAAgB;EAAA,OAAKC,UAAU,CAACD,KAAK,EAAEN,QAAQ,CAAC;AAAA;;;;"}
|
|
@@ -96,6 +96,7 @@ export { NightlightIcon } from "./NightlightIcon";
|
|
|
96
96
|
export { NoteAltIcon } from "./NoteAltIcon";
|
|
97
97
|
export { PasswordIcon } from "./PasswordIcon";
|
|
98
98
|
export { PatternIcon } from "./PatternIcon";
|
|
99
|
+
export { PhishingIcon } from "./PhishingIcon";
|
|
99
100
|
export { PinIcon } from "./PinIcon";
|
|
100
101
|
export { PlayLessonIcon } from "./PlayLessonIcon";
|
|
101
102
|
export { PriceChangeIcon } from "./PriceChangeIcon";
|
|
@@ -143,6 +144,7 @@ export { SummarizeIcon } from "./SummarizeIcon";
|
|
|
143
144
|
export { SystemSecurityUpdateIcon } from "./SystemSecurityUpdateIcon";
|
|
144
145
|
export { SystemSecurityUpdateGoodIcon } from "./SystemSecurityUpdateGoodIcon";
|
|
145
146
|
export { SystemSecurityUpdateWarningIcon } from "./SystemSecurityUpdateWarningIcon";
|
|
147
|
+
export { TargetIcon } from "./TargetIcon";
|
|
146
148
|
export { TaskIcon } from "./TaskIcon";
|
|
147
149
|
export { ThermostatIcon } from "./ThermostatIcon";
|
|
148
150
|
export { Timer10SelectIcon } from "./Timer10SelectIcon";
|
package/dist/index.esm.js
CHANGED
|
@@ -412,6 +412,7 @@ export { ProductionQuantityLimitsIcon } from './icons/Actions/ProductionQuantity
|
|
|
412
412
|
export { PublishedWithChangesIcon } from './icons/Actions/PublishedWithChangesIcon.esm.js';
|
|
413
413
|
export { QueryBuilderIcon } from './icons/Actions/QueryBuilderIcon.esm.js';
|
|
414
414
|
export { QuestionAnswerIcon } from './icons/Actions/QuestionAnswerIcon.esm.js';
|
|
415
|
+
export { QuestionMarkIcon } from './icons/Actions/QuestionMarkIcon.esm.js';
|
|
415
416
|
export { QuickreplyIcon } from './icons/Actions/QuickreplyIcon.esm.js';
|
|
416
417
|
export { ReceiptIcon } from './icons/Actions/ReceiptIcon.esm.js';
|
|
417
418
|
export { RecordVoiceOverIcon } from './icons/Actions/RecordVoiceOverIcon.esm.js';
|
|
@@ -748,8 +749,10 @@ export { GithubIcon } from './icons/Custom/GithubIcon.esm.js';
|
|
|
748
749
|
export { LatePenaltyIcon } from './icons/Custom/LatePenaltyIcon.esm.js';
|
|
749
750
|
export { LightbulbOnIcon } from './icons/Custom/LightbulbOnIcon.esm.js';
|
|
750
751
|
export { ManualGradedIcon } from './icons/Custom/ManualGradedIcon.esm.js';
|
|
752
|
+
export { MediaIcon } from './icons/Custom/MediaIcon.esm.js';
|
|
751
753
|
export { MtIcon } from './icons/Custom/MtIcon.esm.js';
|
|
752
754
|
export { NonMindtapActivityIcon } from './icons/Custom/NonMindtapActivityIcon.esm.js';
|
|
755
|
+
export { NotebookIcon } from './icons/Custom/NotebookIcon.esm.js';
|
|
753
756
|
export { PracticeIcon } from './icons/Custom/PracticeIcon.esm.js';
|
|
754
757
|
export { ProjectWfIcon } from './icons/Custom/ProjectWfIcon.esm.js';
|
|
755
758
|
export { TasksWfIcon } from './icons/Custom/TasksWfIcon.esm.js';
|
|
@@ -853,6 +856,7 @@ export { NightlightIcon } from './icons/Device/NightlightIcon.esm.js';
|
|
|
853
856
|
export { NoteAltIcon } from './icons/Device/NoteAltIcon.esm.js';
|
|
854
857
|
export { PasswordIcon } from './icons/Device/PasswordIcon.esm.js';
|
|
855
858
|
export { PatternIcon } from './icons/Device/PatternIcon.esm.js';
|
|
859
|
+
export { PhishingIcon } from './icons/Device/PhishingIcon.esm.js';
|
|
856
860
|
export { PinIcon } from './icons/Device/PinIcon.esm.js';
|
|
857
861
|
export { PlayLessonIcon } from './icons/Device/PlayLessonIcon.esm.js';
|
|
858
862
|
export { PriceChangeIcon } from './icons/Device/PriceChangeIcon.esm.js';
|
|
@@ -900,6 +904,7 @@ export { SummarizeIcon } from './icons/Device/SummarizeIcon.esm.js';
|
|
|
900
904
|
export { SystemSecurityUpdateIcon } from './icons/Device/SystemSecurityUpdateIcon.esm.js';
|
|
901
905
|
export { SystemSecurityUpdateGoodIcon } from './icons/Device/SystemSecurityUpdateGoodIcon.esm.js';
|
|
902
906
|
export { SystemSecurityUpdateWarningIcon } from './icons/Device/SystemSecurityUpdateWarningIcon.esm.js';
|
|
907
|
+
export { TargetIcon } from './icons/Device/TargetIcon.esm.js';
|
|
903
908
|
export { TaskIcon } from './icons/Device/TaskIcon.esm.js';
|
|
904
909
|
export { ThermostatIcon } from './icons/Device/ThermostatIcon.esm.js';
|
|
905
910
|
export { Timer10SelectIcon } from './icons/Device/Timer10SelectIcon.esm.js';
|
package/dist/index.esm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|