@ideeza/icons 1.0.8 → 1.1.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.
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgBellIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgBellIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgBoxAxisIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgBoxAxisIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgKeyboardArrowDownSmallIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgKeyboardArrowDownSmallIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgMenuDotIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgMenuDotIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgMenuLineIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgMenuLineIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgQuestionAltIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgQuestionAltIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgWalletIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgWalletIcon;
@@ -1,7 +1,9 @@
1
1
  export { default as AddPhotoAltIcon } from "./AddPhotoAltIcon";
2
2
  export { default as BackwordIcon } from "./BackwordIcon";
3
+ export { default as BellIcon } from "./BellIcon";
3
4
  export { default as BoltIcon } from "./BoltIcon";
4
5
  export { default as BoxIcon } from "./BoxIcon";
6
+ export { default as BoxAxisIcon } from "./BoxAxisIcon";
5
7
  export { default as BrushIcon } from "./BrushIcon";
6
8
  export { default as ChatBubbleIcon } from "./ChatBubbleIcon";
7
9
  export { default as CircleFillShapeIcon } from "./CircleFillShapeIcon";
@@ -20,6 +22,9 @@ export { default as KeyboardArrowLeftAltIcon } from "./KeyboradArrowLeftAltIcon"
20
22
  export { default as KeyboardArrowRightAltIcon } from "./KeyboardArrowRightAltIcon";
21
23
  export { default as KeyboardArrowUpAltIcon } from "./KeyboardArrowUpAltIcon";
22
24
  export { default as KeyboardUpDownIcon } from "./KeyboardUpDownIcon";
25
+ export { default as KeyboardArrowDownSmallIcon } from "./KeyboardArrowDownSmallIcon";
26
+ export { default as MenuDotIcon } from "./MenuDotIcon";
27
+ export { default as MenuLineIcon } from "./MenuLineIcon";
23
28
  export { default as MicAltIcon } from "./MicAltIcon";
24
29
  export { default as MicIcon } from "./MicIcon";
25
30
  export { default as MovieIcon } from "./MovieIcon";
@@ -32,6 +37,7 @@ export { default as PauseIcon } from "./PauseIcon";
32
37
  export { default as PauseOutlineIcon } from "./PauseOutlineIcon";
33
38
  export { default as PlayArrowIcon } from "./PlayArrowIcon";
34
39
  export { default as PlusIcon } from "./PlusIcon";
40
+ export { default as QuestionAltIcon } from "./QuestionAltIcon";
35
41
  export { default as QuestionMarkIcon } from "./QuestionMarkIcon";
36
42
  export { default as QuickStartIcon } from "./QuickStartIcon";
37
43
  export { default as QuizIcon } from "./QuizIcon";
@@ -46,6 +52,7 @@ export { default as TacticIcon } from "./TacticIcon";
46
52
  export { default as TryAgainIcon } from "./TryAgainIcon";
47
53
  export { default as UserDoubleIcon } from "./UserDoubleIcon";
48
54
  export { default as VerifiedOutlineIcon } from "./VerifiedOutlineIcon";
55
+ export { default as WalletIcon } from "./WalletIcon";
49
56
  export { default as WarningFillIcon } from "./WarningFillIcon";
50
57
  export { default as WarningIcon } from "./WarningIcon";
51
58
  export { default as ZoomInIcon } from "./ZoomInIcon";
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgMobileIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgMobileIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgPcIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgPcIcon;
@@ -47,11 +47,13 @@ export { default as ListBulletedIcon } from "./ListBulletedIcon";
47
47
  export { default as LocationOutlineIcon } from "./LocationOutlineIcon";
48
48
  export { default as LogoutAltIcon } from "./LogoutAltIcon";
49
49
  export { default as LogoutIcon } from "./LogoutIcon";
50
+ export { default as MobileIcon } from "./MobileIcon";
50
51
  export { default as NoteAltIcon } from "./NoteAltIcon";
51
52
  export { default as NotificationBellAltIcon } from "./NotificationBellAltIcon";
52
53
  export { default as NotificationBellAltSlashIcon } from "./NotificationBellAltSlashIcon";
53
54
  export { default as NotificationOffIcon } from "./NotificationOffIcon";
54
55
  export { default as PaypalIcon } from "./PaypalIcon";
56
+ export { default as PcIcon } from "./PcIcon";
55
57
  export { default as PersonBookIcon } from "./PersonBookIcon";
56
58
  export { default as PersonRemoveIcon } from "./PersonRemoveIcon";
57
59
  export { default as PointRightOutlineIcon } from "./PointRightOutlineIcon";
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgBlogIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgBlogIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgDashboardMenuIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgDashboardMenuIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgFolderIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgFolderIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgMessageIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgMessageIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgNewsFeedIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgNewsFeedIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgNoteIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgNoteIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgPartsIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgPartsIcon;
@@ -0,0 +1,8 @@
1
+ import * as React from "react";
2
+ import type { SVGProps } from "react";
3
+ interface SVGRProps {
4
+ title?: string;
5
+ titleId?: string;
6
+ }
7
+ declare const SvgTagIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
8
+ export default SvgTagIcon;
@@ -0,0 +1,8 @@
1
+ export { default as BlogIcon } from "./BlogIcon";
2
+ export { default as TagIcon } from "./TagIcon";
3
+ export { default as NoteIcon } from "./NoteIcon";
4
+ export { default as FolderAltIcon } from "./FolderAltIcon";
5
+ export { default as DashboardMenuIcon } from "./DashboardMenuIcon";
6
+ export { default as MessageIcon } from "./MessageIcon";
7
+ export { default as NewsFeedIcon } from "./NewsFeedIcon";
8
+ export { default as PartsIcon } from "./PartsIcon";
package/dist/index.cjs CHANGED
@@ -37,6 +37,11 @@ const BackwordIcon = ({ title, titleId, ...props }) => (React.createElement("svg
37
37
  title ? React.createElement("title", { id: titleId }, title) : null,
38
38
  React.createElement("path", { fill: "currentColor", d: "m1.07 4.417 6.075-3.406c.602-.337 1.355.085 1.355.76v6.457c0 .676-.753 1.098-1.355.76L1.07 5.582zM1.07 1.272A.445.445 0 0 0 .618.833a.445.445 0 0 0-.451.439v7.456c0 .242.202.438.451.438.25 0 .452-.196.452-.438z" })));
39
39
 
40
+ const SvgBellIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props },
41
+ title ? React__namespace.createElement("title", { id: titleId }, title) : null,
42
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M2.53 14.77c-.213 1.394.738 2.361 1.902 2.843 4.463 1.85 10.673 1.85 15.136 0 1.164-.482 2.115-1.45 1.902-2.843-.13-.857-.777-1.57-1.256-2.267-.627-.924-.689-1.931-.69-3.003C19.525 5.358 16.157 2 12 2S4.475 5.358 4.475 9.5c0 1.072-.062 2.08-.69 3.003-.478.697-1.124 1.41-1.255 2.267" }),
43
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M8 19c.458 1.725 2.076 3 4 3 1.925 0 3.541-1.275 4-3" })));
44
+
40
45
  const BoltIcon = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 15 20", "aria-labelledby": titleId, ...props },
41
46
  title ? React.createElement("title", { id: titleId }, title) : null,
42
47
  React.createElement("path", { fill: "currentColor", d: "M5 13H1.9q-.6 0-.888-.537-.286-.538.063-1.038L8.55.675q.25-.35.65-.488.4-.137.825.013t.625.525.15.8L10 8h3.875q.65 0 .912.575.263.575-.162 1.075L6.4 19.5a1.27 1.27 0 0 1-.675.425 1.13 1.13 0 0 1-.775-.075 1.3 1.3 0 0 1-.588-.538 1.23 1.23 0 0 1-.162-.787z" })));
@@ -45,6 +50,10 @@ const BoxIcon = ({ title, titleId, ...props }) => (React.createElement("svg", {
45
50
  title ? React.createElement("title", { id: titleId }, title) : null,
46
51
  React.createElement("path", { fill: "currentColor", d: "M2.667 6.667v14.666h18.666V6.667h-4v8.5q0 .766-.633 1.15-.634.383-1.3.05l-3.4-1.7-3.4 1.7q-.667.333-1.3-.05-.633-.384-.633-1.15v-8.5zm0 17.333a2.57 2.57 0 0 1-1.884-.783A2.57 2.57 0 0 1 0 21.333V4.7q0-.466.15-.9T.6 3L2.267.967Q2.634.5 3.183.25 3.733 0 4.333 0h15.334q.6 0 1.15.25t.916.717L23.4 3q.3.366.45.8.15.433.15.9v16.633q0 1.1-.783 1.884a2.57 2.57 0 0 1-1.884.783zM3.2 4h17.6l-1.133-1.333H4.333zm6.133 2.667V13L12 11.667 14.667 13V6.667z" })));
47
52
 
53
+ const SvgBoxAxisIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 22 21", "aria-labelledby": titleId, ...props },
54
+ title ? React__namespace.createElement("title", { id: titleId }, title) : null,
55
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "m14.68 16.74 4-2.31V9M3.32 9v5.43l4 2.31M15.721 3.86l-4.72-2.73-4.72 2.73M1.96 4.78 11 10l9.041-5.22M11 10v9.08" })));
56
+
48
57
  const BrushIcon = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
49
58
  title ? React.createElement("title", { id: titleId }, title) : null,
50
59
  React.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M5.495 11.753c3.088-3.59 10.084-10.598 13.044-10.75 1.83-.174-1.817 6.322-10.46 13.43m1.38-6.39 2.257 2.28M1 18.856c.71-2.507.262-1.275.504-4.162.13-.428.389-1.754 2.01-2.415 1.842-.752 3.193.384 3.542.918 1.029 1.115 1.148 2.5 0 4.082S2.504 19.253 1 18.855" })));
@@ -119,6 +128,18 @@ const KeyboardUpDownIcon = ({ title, titleId, ...props }) => (React.createElemen
119
128
  title ? React.createElement("title", { id: titleId }, title) : null,
120
129
  React.createElement("path", { fill: "currentColor", d: "m4 2.858 2.05 2.05a.83.83 0 1 0 1.175-1.175l-2.642-2.65a.83.83 0 0 0-1.175 0L.767 3.733a.83.83 0 1 0 1.175 1.175zm0 10.284-2.05-2.05a.83.83 0 1 0-1.175 1.175l2.642 2.65a.83.83 0 0 0 1.175 0l2.641-2.642A.83.83 0 1 0 6.058 11.1z" })));
121
130
 
131
+ const SvgKeyboardArrowDownSmallIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 14 9", "aria-labelledby": titleId, ...props },
132
+ title ? React__namespace.createElement("title", { id: titleId }, title) : null,
133
+ React__namespace.createElement("path", { fill: "currentColor", d: "M2.474.838 7 5.365 11.527.838a1.16 1.16 0 0 1 1.645 0c.455.455.455 1.19 0 1.645L7.817 7.838a1.16 1.16 0 0 1-1.645 0L.817 2.483a1.16 1.16 0 0 1 0-1.645 1.187 1.187 0 0 1 1.657 0" })));
134
+
135
+ const SvgMenuDotIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
136
+ title ? React__namespace.createElement("title", { id: titleId }, title) : null,
137
+ React__namespace.createElement("path", { stroke: "currentColor", strokeMiterlimit: 10, strokeWidth: 2, d: "M5.27 1.03H3.03a2 2 0 0 0-2 2v2.24a2 2 0 0 0 2 2h2.24a2 2 0 0 0 2-2V3.03a2 2 0 0 0-2-2ZM16.98 1.03h-2.24a2 2 0 0 0-2 2v2.24a2 2 0 0 0 2 2h2.24a2 2 0 0 0 2-2V3.03a2 2 0 0 0-2-2ZM5.27 12.76H3.03a2 2 0 0 0-2 2V17a2 2 0 0 0 2 2h2.24a2 2 0 0 0 2-2v-2.24a2 2 0 0 0-2-2ZM16.98 12.76h-2.24a2 2 0 0 0-2 2V17a2 2 0 0 0 2 2h2.24a2 2 0 0 0 2-2v-2.24a2 2 0 0 0-2-2Z" })));
138
+
139
+ const SvgMenuLineIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 19", "aria-labelledby": titleId, ...props },
140
+ title ? React__namespace.createElement("title", { id: titleId }, title) : null,
141
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeMiterlimit: 10, strokeWidth: 2, d: "M1 1h18M1 6.403h18M1 11.806h18M1 17.199h18" })));
142
+
122
143
  const MicAltIcon = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 12 17", "aria-labelledby": titleId, ...props },
123
144
  title ? React.createElement("title", { id: titleId }, title) : null,
124
145
  React.createElement("path", { fill: "currentColor", d: "M6 10.667a2.4 2.4 0 0 1-1.77-.73 2.4 2.4 0 0 1-.73-1.77v-5q0-1.042.73-1.771A2.4 2.4 0 0 1 6 .666a2.4 2.4 0 0 1 1.771.73 2.4 2.4 0 0 1 .73 1.77v5a2.4 2.4 0 0 1-.73 1.772 2.4 2.4 0 0 1-1.77.729M5.167 16.5v-2.562Q3.001 13.646 1.584 12T.167 8.167h1.667q0 1.728 1.218 2.948Q4.272 12.333 6 12.333q1.73 0 2.948-1.218 1.22-1.22 1.219-2.948h1.667q0 2.187-1.417 3.833Q9 13.645 6.834 13.938V16.5zM6 9q.354 0 .594-.24t.24-.593v-5a.8.8 0 0 0-.24-.594.8.8 0 0 0-.594-.24.8.8 0 0 0-.593.24.8.8 0 0 0-.24.594v5q0 .354.24.593Q5.647 9 6 9" })));
@@ -179,6 +200,12 @@ const PlusIcon = ({ title, titleId, ...props }) => (React.createElement("svg", {
179
200
  title ? React.createElement("title", { id: titleId }, title) : null,
180
201
  React.createElement("path", { fill: "currentColor", d: "M13 8H8v5c0 .55-.45 1-1 1s-1-.45-1-1V8H1c-.55 0-1-.45-1-1s.45-1 1-1h5V1c0-.55.45-1 1-1s1 .45 1 1v5h5c.55 0 1 .45 1 1s-.45 1-1 1" })));
181
202
 
203
+ const SvgQuestionAltIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props },
204
+ title ? React__namespace.createElement("title", { id: titleId }, title) : null,
205
+ React__namespace.createElement("path", { stroke: "currentColor", strokeWidth: 2, d: "M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10Z" }),
206
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "M10 9a2 2 0 1 1 3.683 1.08C13.085 11.01 12 11.896 12 13v.5" }),
207
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M11.992 17h.01" })));
208
+
182
209
  const QuestionMarkIcon = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 9 16", "aria-labelledby": titleId, ...props },
183
210
  title ? React.createElement("title", { id: titleId }, title) : null,
184
211
  React.createElement("path", { fill: "currentColor", d: "M6.458 4.675q0-1.032-.69-1.658t-1.82-.625q-.718 0-1.27.292-.555.293-.957.88a.92.92 0 0 1-.634.396.82.82 0 0 1-.693-.193.72.72 0 0 1-.25-.479.82.82 0 0 1 .133-.545q.635-.96 1.57-1.46.936-.5 2.1-.5 1.86 0 3.03 1.065 1.167 1.066 1.167 2.776 0 .906-.387 1.66-.389.753-1.323 1.622-.874.793-1.193 1.288t-.37 1.111a1 1 0 0 1-.295.593.8.8 0 0 1-.587.237.81.81 0 0 1-.587-.235.77.77 0 0 1-.243-.577q0-.837.382-1.53t1.28-1.491q.958-.84 1.298-1.404.34-.563.34-1.223m-2.51 11.236q-.513 0-.881-.37a1.2 1.2 0 0 1-.37-.88q0-.511.37-.88.37-.37.88-.37.512 0 .88.37.37.368.37.88 0 .51-.37.88-.368.37-.88.37" })));
@@ -246,6 +273,11 @@ const VerifiedOutlineIcon = ({ title, titleId, ...props }) => (React.createEleme
246
273
  React.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", d: "M12.66 12.667h.007m-.007 0c-.415.411-1.167.309-1.695.309-.648 0-.96.127-1.422.589-.393.393-.92 1.102-1.543 1.102s-1.15-.709-1.543-1.102c-.463-.462-.775-.589-1.422-.589-.528 0-1.28.103-1.696-.31-.418-.414-.315-1.17-.315-1.7 0-.672-.147-.98-.625-1.458C1.69 8.798 1.333 8.441 1.333 8S1.69 7.203 2.4 6.492c.427-.427.624-.85.624-1.457 0-.528-.103-1.28.31-1.696.414-.418 1.17-.315 1.7-.315.609 0 1.031-.198 1.458-.625.71-.71 1.067-1.066 1.508-1.066s.797.356 1.508 1.067c.427.427.85.624 1.457.624.528 0 1.28-.103 1.696.31.418.414.315 1.17.315 1.7 0 .672.147.98.625 1.458.71.71 1.066 1.067 1.066 1.508s-.356.797-1.067 1.508c-.477.478-.624.787-.624 1.457 0 .531.102 1.287-.316 1.702" }),
247
274
  React.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", d: "M6 8.595s.8.435 1.2 1.072c0 0 1.2-2.5 2.8-3.334" })));
248
275
 
276
+ const SvgWalletIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 21 20", "aria-labelledby": titleId, ...props },
277
+ title ? React__namespace.createElement("title", { id: titleId }, title) : null,
278
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M7.205 9.05h12.033v4.256a5.326 5.326 0 0 1-5.33 5.332H6.568a5.33 5.33 0 0 1-5.33-5.332V8.272c0-2.939 1.515-5.27 4.454-5.27" }),
279
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M18.064 6.013a5 5 0 0 1-1.03 3.038H9.123a4.9 4.9 0 0 1-1.03-3.038c0-2.75 2.23-4.99 4.99-4.99s4.99 2.24 4.99 4.99zM14.293 15.269a1.684 1.684 0 1 0 0-3.369 1.684 1.684 0 0 0 0 3.369" })));
280
+
249
281
  const WarningFillIcon = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 22", "aria-labelledby": titleId, ...props },
250
282
  title ? React.createElement("title", { id: titleId }, title) : null,
251
283
  React.createElement("path", { fill: "currentColor", fillRule: "evenodd", d: "M14.682 1.871c-1.177-2.05-4.188-2.05-5.364 0L.733 16.837c-1.154 2.011.328 4.496 2.682 4.496h17.17c2.354 0 3.836-2.485 2.682-4.496zM12 5.583c-.644 0-1.167.523-1.167 1.167v7a1.167 1.167 0 1 0 2.334 0v-7c0-.644-.523-1.167-1.167-1.167m0 10.5a1.167 1.167 0 1 0 0 2.334 1.167 1.167 0 0 0 0-2.334", clipRule: "evenodd" })));
@@ -464,6 +496,12 @@ const LogoutIcon = ({ title, titleId, ...props }) => (React.createElement("svg",
464
496
  title ? React.createElement("title", { id: titleId }, title) : null,
465
497
  React.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "m11 3-.663.234c-2.578.91-3.868 1.365-4.602 2.403S5 8.043 5 10.777v2.445c0 2.735 0 4.102.735 5.14.734 1.039 2.024 1.494 4.602 2.404L11 21m10-9H11m10 0c0-.7-1.994-2.008-2.5-2.5M21 12c0 .7-1.994 2.008-2.5 2.5" })));
466
498
 
499
+ const SvgMobileIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props },
500
+ title ? React__namespace.createElement("title", { id: titleId }, title) : null,
501
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "M5 9c0-3.3 0-4.95 1.025-5.975S8.7 2 12 2s4.95 0 5.975 1.025S19 5.7 19 9v6c0 3.3 0 4.95-1.025 5.975S15.3 22 12 22s-4.95 0-5.975-1.025S5 18.3 5 15z" }),
502
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M11 19h2" }),
503
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinejoin: "round", strokeWidth: 2, d: "m9 2 .089.534c.193 1.157.29 1.736.686 2.088C10.19 4.989 10.776 5 12 5s1.81-.01 2.225-.378c.397-.352.493-.93.686-2.088L15 2" })));
504
+
467
505
  const NoteAltIcon = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 18 20", "aria-labelledby": titleId, ...props },
468
506
  title ? React.createElement("title", { id: titleId }, title) : null,
469
507
  React.createElement("path", { fill: "currentColor", d: "M2 20q-.824 0-1.412-.587A1.93 1.93 0 0 1 0 18V4q0-.824.588-1.412A1.93 1.93 0 0 1 2 2h4.2q.326-.9 1.087-1.45A2.86 2.86 0 0 1 9 0q.95 0 1.713.55.762.55 1.087 1.45H16q.824 0 1.413.587Q18 3.176 18 4v14q0 .824-.587 1.413A1.93 1.93 0 0 1 16 20zm0-2h14V4H2zM9 3.25a.73.73 0 0 0 .75-.75.73.73 0 0 0-.75-.75.73.73 0 0 0-.75.75.73.73 0 0 0 .75.75M4.5 16h1.2q.2 0 .388-.088.188-.087.312-.212l5.7-5.65L9.95 7.9 4.3 13.55q-.15.15-.225.337T4 14.276V15.5q0 .2.15.35t.35.15m8.3-6.65 1.05-1.1a.48.48 0 0 0 0-.7l-1.4-1.4a.48.48 0 0 0-.7 0l-1.1 1.05z" })));
@@ -487,6 +525,12 @@ const PaypalIcon = ({ title, titleId, ...props }) => (React.createElement("svg",
487
525
  React.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M3.294 3.835 1.165 16.671c-.18 1.081-.269 1.622.03 1.975.297.354.842.354 1.933.354h.402c.823 0 1.234 0 1.515-.244.28-.245.34-.654.455-1.473l.468-3.29c.037-.26.055-.39.084-.501a1.99 1.99 0 0 1 1.697-1.479C7.862 12 7.993 12 8.254 12h1.162a6.636 6.636 0 0 0 6.464-5.186C16.554 3.836 14.302 1 11.263 1h-4.64c-1.114 0-1.67 0-2.11.235-.25.134-.47.32-.642.547-.303.397-.394.949-.577 2.053" }),
488
526
  React.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "m5.243 18.5-.228 1.332c-.105.61.37 1.168.996 1.168h1.99c.495 0 .917-.354.998-.836l.73-4.329c.08-.482.503-.835.997-.835h1.803c2.581 0 4.816-1.773 5.376-4.265C18.297 8.99 17.445 7.31 16 6.5" })));
489
527
 
528
+ const SvgPcIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props },
529
+ title ? React__namespace.createElement("title", { id: titleId }, title) : null,
530
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M14 2h-4c-3.28 0-4.919 0-6.081.814a4.5 4.5 0 0 0-1.105 1.105C2 5.08 2 6.72 2 10s0 4.919.814 6.081a4.5 4.5 0 0 0 1.105 1.105C5.08 18 6.72 18 10 18h4c3.28 0 4.919 0 6.081-.814a4.5 4.5 0 0 0 1.105-1.105C22 14.92 22 13.28 22 10s0-4.919-.814-6.081a4.5 4.5 0 0 0-1.105-1.105C18.92 2 17.28 2 14 2Z" }),
531
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M11 15h2" }),
532
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "m14.5 22-.316-.419c-.71-.944-.887-2.387-.437-3.581M9.5 22l.316-.419c.71-.944.887-2.387.437-3.581M7 22h10" })));
533
+
490
534
  const PersonBookIcon = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 17 20", "aria-labelledby": titleId, ...props },
491
535
  title ? React.createElement("title", { id: titleId }, title) : null,
492
536
  React.createElement("path", { fill: "currentColor", d: "M8.5 16q-1.4 0-2.675.438-1.275.437-2.325 1.312V18h10v-.25a7.3 7.3 0 0 0-2.325-1.312A8.2 8.2 0 0 0 8.5 16m0-2q1.725 0 3.225.525T14.5 16V2h-12v14a10.3 10.3 0 0 1 2.775-1.475Q6.775 14 8.5 14m0-4q-.625 0-1.062-.437A1.45 1.45 0 0 1 7 8.5q0-.625.438-1.062A1.45 1.45 0 0 1 8.5 7q.624 0 1.063.438Q10 7.875 10 8.5q0 .624-.437 1.063A1.45 1.45 0 0 1 8.5 10m-6 10q-.825 0-1.412-.587A1.93 1.93 0 0 1 .5 18V2q0-.824.587-1.412A1.93 1.93 0 0 1 2.5 0h12q.825 0 1.412.588.588.587.588 1.412v16q0 .824-.588 1.413A1.93 1.93 0 0 1 14.5 20zm6-8q1.45 0 2.475-1.025A3.37 3.37 0 0 0 12 8.5q0-1.45-1.025-2.475A3.37 3.37 0 0 0 8.5 5Q7.05 5 6.025 6.025A3.37 3.37 0 0 0 5 8.5q0 1.45 1.025 2.475A3.37 3.37 0 0 0 8.5 12" })));
@@ -1242,7 +1286,7 @@ const SvgFolderExportIcon = ({ title, titleId, ...props }) => (React__namespace.
1242
1286
  React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M15.834 17.5c.505-.491 2.5-1.8 2.5-2.5s-1.995-2.008-2.5-2.5M17.5 15h-5.833" }),
1243
1287
  React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M10 17.5c-3.928 0-5.892 0-7.113-1.22-1.22-1.22-1.22-3.185-1.22-7.113V6.62c0-1.514 0-2.27.317-2.838a2.5 2.5 0 0 1 .965-.965C3.517 2.5 4.273 2.5 5.787 2.5c.97 0 1.455 0 1.88.16.968.363 1.368 1.243 1.805 2.118L10 5.833m-3.333 0h7.292c1.755 0 2.633 0 3.264.422a2.5 2.5 0 0 1 .69.69c.404.605.42 1.437.42 3.055v.833" })));
1244
1288
 
1245
- const SvgFolderIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 22 20", "aria-labelledby": titleId, ...props },
1289
+ const SvgFolderIcon$1 = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 22 20", "aria-labelledby": titleId, ...props },
1246
1290
  title ? React__namespace.createElement("title", { id: titleId }, title) : null,
1247
1291
  React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 5h9.75c2.107 0 3.16 0 3.917.506.327.219.608.5.827.827C21 7.09 21 8.143 21 10.25c0 3.511 0 5.267-.843 6.528a5 5 0 0 1-1.38 1.38C17.518 19 15.762 19 12.25 19H11c-4.714 0-7.071 0-8.536-1.465C1 16.072 1 13.715 1 9V5.944c0-1.816 0-2.724.38-3.406A3 3 0 0 1 2.538 1.38C3.22 1 4.128 1 5.944 1 7.108 1 7.69 1 8.2 1.191c1.163.436 1.643 1.493 2.168 2.542L11 5" })));
1248
1292
 
@@ -2262,6 +2306,55 @@ const TwitterIcon = ({ title, titleId, ...props }) => (React.createElement("svg"
2262
2306
  title ? React.createElement("title", { id: titleId }, title) : null,
2263
2307
  React.createElement("path", { fill: "currentColor", d: "M.7 8.162c1.045.06 1.959-.185 2.85-.832-.9-.154-1.525-.565-1.864-1.416.263-.036.493.032.765-.077C1.564 5.448.99 4.865.967 3.857c.28.022.493.207.828.18C.98 3.241.732 2.373 1.243 1.32c.85.977 1.845 1.642 3.062 1.954.068.018.131.036.2.05.311.072.682.226.872.203.326-.04 0-.416.082-.905.257-1.52 1.93-2.211 3.17-1.32.362.262.647.258 1.004.1.186-.082.376-.164.597-.259-.05.435-.384.674-.65.995.302.068.546-.018.827-.108-.095.312-.33.488-.543.66-.222.177-.308.362-.317.652-.135 4.383-5.115 7.77-8.521 5.075-.33-.263-.01 0-.326-.254" })));
2264
2308
 
2309
+ const SvgBlogIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
2310
+ title ? React__namespace.createElement("title", { id: titleId }, title) : null,
2311
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinejoin: "round", strokeWidth: 1.5, d: "M2.083 10c0-3.732 0-5.598 1.16-6.757 1.159-1.16 3.025-1.16 6.757-1.16s5.598 0 6.757 1.16c1.16 1.16 1.16 3.025 1.16 6.757s0 5.598-1.16 6.757c-1.16 1.16-3.025 1.16-6.757 1.16s-5.598 0-6.758-1.16C2.083 15.597 2.083 13.732 2.083 10Z" }),
2312
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M8.333 8.333h.833M8.333 12.5h3.333" }),
2313
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinejoin: "round", strokeWidth: 1.5, d: "M12.465 9.552v-.795c0-1.56 0-2.34-.396-2.887-.75-1.037-2.208-.858-3.337-.858-1.128 0-2.586-.179-3.336.858C5 6.417 5 7.197 5 8.757v2.081c0 1.962 0 2.943.607 3.553.608.609 1.585.609 3.54.609h3.092c2.165 0 3.03-1.523 2.688-3.693-.203-1.29-1.317-1.755-2.462-1.755Z" })));
2314
+
2315
+ const SvgTagIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
2316
+ title ? React__namespace.createElement("title", { id: titleId }, title) : null,
2317
+ React__namespace.createElement("g", { stroke: "currentColor", strokeWidth: 1.5, clipPath: "url(#tag-icon_svg__a)" },
2318
+ React__namespace.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M14.583 4.167a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5" }),
2319
+ React__namespace.createElement("path", { d: "M2.312 9.287c-.836.933-.854 2.342-.087 3.333a28.3 28.3 0 0 0 5.156 5.155c.99.767 2.4.75 3.333-.087a77 77 0 0 0 7.096-7.248c.222-.258.36-.574.391-.912.138-1.496.42-5.807-.75-6.978-1.171-1.171-5.482-.888-6.979-.751-.338.031-.654.17-.912.391a77 77 0 0 0-7.248 7.097Z" }),
2320
+ React__namespace.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "m5.833 11.667 2.5 2.5" })),
2321
+ React__namespace.createElement("defs", null,
2322
+ React__namespace.createElement("clipPath", { id: "tag-icon_svg__a" },
2323
+ React__namespace.createElement("path", { fill: "currentColor", d: "M0 0h20v20H0z" })))));
2324
+
2325
+ const SvgNoteIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
2326
+ title ? React__namespace.createElement("title", { id: titleId }, title) : null,
2327
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M8.574 18.301h-.748c-2.707 0-4.061 0-4.902-.854s-.841-2.23-.841-4.98V8.302c0-2.75 0-4.125.841-4.979s2.195-.854 4.902-.854h2.46c2.708 0 4.29.046 5.13.9.841.854.834 2.183.834 4.933v.989M13.287 1.667v1.666M9.121 1.667v1.666M4.954 1.667v1.666" }),
2328
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M5.833 12.5h3.333M5.833 8.333H12.5" }),
2329
+ React__namespace.createElement("path", { stroke: "currentColor", strokeWidth: 1.5, d: "M17.3 12.399c-.755-.846-1.207-.795-1.71-.644-.352.05-1.56 1.459-2.063 1.908-.825.816-1.655 1.656-1.71 1.765-.156.254-.302.705-.372 1.208-.13.755-.32 1.604-.08 1.677.239.073.905-.067 1.66-.178.502-.09.854-.19 1.106-.342.352-.211 1.006-.956 2.133-2.063.706-.744 1.388-1.258 1.59-1.761.2-.755-.101-1.158-.554-1.57Z", opacity: 0.93 })));
2330
+
2331
+ const SvgFolderIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
2332
+ title ? React__namespace.createElement("title", { id: titleId }, title) : null,
2333
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M6.667 5.833h7.292c1.755 0 2.633 0 3.264.422a2.5 2.5 0 0 1 .69.69c.42.63.42 1.508.42 3.263 0 2.926 0 4.39-.702 5.44a4.2 4.2 0 0 1-1.15 1.15c-1.05.702-2.513.702-5.439.702H10c-3.928 0-5.892 0-7.113-1.22-1.22-1.22-1.22-3.185-1.22-7.113V6.62c0-1.514 0-2.27.317-2.838a2.5 2.5 0 0 1 .965-.965C3.517 2.5 4.273 2.5 5.787 2.5c.97 0 1.455 0 1.88.16.968.363 1.368 1.243 1.805 2.118L10 5.833" })));
2334
+
2335
+ const SvgDashboardMenuIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
2336
+ title ? React__namespace.createElement("title", { id: titleId }, title) : null,
2337
+ React__namespace.createElement("g", { stroke: "currentColor", strokeWidth: 1.5, clipPath: "url(#dashboard-menu-icon_svg__a)" },
2338
+ React__namespace.createElement("path", { d: "M1.667 5c0-1.571 0-2.357.488-2.845S3.43 1.667 5 1.667s2.357 0 2.846.488.488 1.274.488 2.845v1.667c0 1.571 0 2.357-.488 2.845C7.357 10 6.572 10 5 10c-1.571 0-2.357 0-2.845-.488s-.488-1.274-.488-2.845zM1.667 15.833c0-.776 0-1.165.127-1.47.169-.41.493-.734.902-.903.306-.127.694-.127 1.471-.127h1.667c.776 0 1.165 0 1.47.127.41.17.734.494.903.902.127.306.127.695.127 1.471s0 1.165-.127 1.472c-.17.408-.494.732-.902.901-.306.127-.695.127-1.471.127H4.167c-.777 0-1.165 0-1.471-.127a1.67 1.67 0 0 1-.902-.901c-.127-.307-.127-.695-.127-1.472ZM11.667 13.333c0-1.571 0-2.357.488-2.845S13.43 10 15 10s2.357 0 2.846.488.488 1.274.488 2.845V15c0 1.571 0 2.357-.488 2.845-.489.488-1.274.488-2.846.488-1.571 0-2.357 0-2.845-.488s-.488-1.274-.488-2.845zM11.667 4.167c0-.777 0-1.165.127-1.471.169-.409.493-.733.902-.902.306-.127.694-.127 1.471-.127h1.667c.776 0 1.165 0 1.47.127.41.169.734.493.903.902.127.306.127.694.127 1.47 0 .777 0 1.166-.127 1.472-.17.408-.494.733-.902.902-.306.127-.695.127-1.471.127h-1.667c-.777 0-1.165 0-1.471-.127a1.67 1.67 0 0 1-.902-.902c-.127-.306-.127-.695-.127-1.471Z" })),
2339
+ React__namespace.createElement("defs", null,
2340
+ React__namespace.createElement("clipPath", { id: "dashboard-menu-icon_svg__a" },
2341
+ React__namespace.createElement("path", { fill: "currentColor", d: "M0 0h20v20H0z" })))));
2342
+
2343
+ const SvgMessageIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
2344
+ title ? React__namespace.createElement("title", { id: titleId }, title) : null,
2345
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M4.228 15.076c-.28.189-.576.363-.88.53-.143.083-.287.174-.355.34-.16.402.06.781.523.872.901.197 1.81.326 2.742.31.66-.015 1.318-.09 1.924-.265" }),
2346
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M4.228 15.083a6.14 6.14 0 0 1-1.811-4.348V9.34a6.145 6.145 0 0 1 6.152-6.144h2.704a6.143 6.143 0 0 1 6.144 6.144v1.394a6.15 6.15 0 0 1-6.144 6.151H8.57c-.13 0-.258 0-.387-.015" }),
2347
+ React__namespace.createElement("path", { fill: "currentColor", d: "M6.849 10.97a.81.81 0 1 0 0-1.622.81.81 0 0 0 0 1.621M9.917 10.97a.81.81 0 1 0 0-1.622.81.81 0 0 0 0 1.621M12.978 10.97a.81.81 0 1 0 0-1.622.81.81 0 0 0 0 1.621" })));
2348
+
2349
+ const SvgNewsFeedIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
2350
+ title ? React__namespace.createElement("title", { id: titleId }, title) : null,
2351
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M15 12.5v-5c0-2.357 0-3.536-.732-4.268S12.358 2.5 10 2.5H6.667c-2.357 0-3.536 0-4.268.732S1.667 5.143 1.667 7.5v5c0 2.357 0 3.535.732 4.268s1.911.732 4.268.732h10M5 6.667h6.667M5 10h6.667M5 13.333h3.333" }),
2352
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M15 6.667h.833c1.179 0 1.768 0 2.134.366s.366.955.366 2.134v6.666a1.667 1.667 0 1 1-3.333 0z" })));
2353
+
2354
+ const SvgPartsIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
2355
+ title ? React__namespace.createElement("title", { id: titleId }, title) : null,
2356
+ React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeMiterlimit: 10, strokeWidth: 1.5, d: "M12.162 3.333H10.58a1 1 0 0 0-1 1v6.878a1 1 0 0 0 1 1h1.583a1 1 0 0 0 1-1V4.333a1 1 0 0 0-1-1M17.1 7.772h-3.938M9.58 5.98H6.65M9.58 9.25H6.65M4.506 11.49v4.438M2.5 13.708h4.151" })));
2357
+
2265
2358
  exports.AccountBalanceWalletIcon = AccountBalanceWalletIcon;
2266
2359
  exports.AccountTreeIcon = AccountTreeIcon;
2267
2360
  exports.AddImageIcon = AddImageIcon;
@@ -2306,8 +2399,10 @@ exports.AutoScaleSketchIcon = SvgAutoScaleSketchIcon;
2306
2399
  exports.BackwordIcon = BackwordIcon;
2307
2400
  exports.BagIcon = BagIcon;
2308
2401
  exports.BagWithTimeIcon = BagWithTimeIcon;
2402
+ exports.BellIcon = SvgBellIcon;
2309
2403
  exports.BezierCurveIcon = SvgBezierCurveIcon;
2310
2404
  exports.BlockIcon = BlockIcon;
2405
+ exports.BlogIcon = SvgBlogIcon;
2311
2406
  exports.BlubFillIcon = BlubFillIcon;
2312
2407
  exports.BoardDimensionIcon = SvgBoardDimensionIcon;
2313
2408
  exports.BoltIcon = BoltIcon;
@@ -2318,6 +2413,7 @@ exports.BottomIcon = SvgBottomIcon;
2318
2413
  exports.Box2Icon = SvgBox2Icon;
2319
2414
  exports.Box3DAltIcon = SvgBox3DAltIcon;
2320
2415
  exports.Box3DIcon = SvgBox3DIcon;
2416
+ exports.BoxAxisIcon = SvgBoxAxisIcon;
2321
2417
  exports.BoxIcon = BoxIcon;
2322
2418
  exports.BrushIcon = BrushIcon;
2323
2419
  exports.BugIcon = BugIcon;
@@ -2387,6 +2483,7 @@ exports.CurveIcon = SvgCurveIcon;
2387
2483
  exports.CutAltIcon = SvgCutAltIcon;
2388
2484
  exports.CutIcon = SvgCutIcon;
2389
2485
  exports.CylinderIcon = SvgCylinderIcon;
2486
+ exports.DashboardMenuIcon = SvgDashboardMenuIcon;
2390
2487
  exports.DashboardOutlineIcon = DashboardOutlineIcon;
2391
2488
  exports.DefineAlternateComponentIcon = SvgDefineAlternateComponentIcon;
2392
2489
  exports.DeleteBodyIcon = SvgDeleteBodyIcon;
@@ -2449,8 +2546,9 @@ exports.FilletIcon = SvgFilletIcon;
2449
2546
  exports.FlagIcon = FlagIcon;
2450
2547
  exports.FlipHorizontalIcon = FlipHorizontalIcon;
2451
2548
  exports.FlipVerticalIcon = FlipVerticalIcon;
2549
+ exports.FolderAltIcon = SvgFolderIcon;
2452
2550
  exports.FolderExportIcon = SvgFolderExportIcon;
2453
- exports.FolderIcon = SvgFolderIcon;
2551
+ exports.FolderIcon = SvgFolderIcon$1;
2454
2552
  exports.FolderOutlineIcon = FolderOutlineIcon;
2455
2553
  exports.FolderProtectedIcon = FolderProtectedIcon;
2456
2554
  exports.ForwordIcon = ForwordIcon;
@@ -2491,6 +2589,7 @@ exports.JunctionIcon = SvgJunctionIcon;
2491
2589
  exports.KeyIcon = KeyIcon;
2492
2590
  exports.KeyboardArrowDownAltIcon = KeyboardArrowDownAltIcon;
2493
2591
  exports.KeyboardArrowDownIcon = KeyboardArrowDownIcon;
2592
+ exports.KeyboardArrowDownSmallIcon = SvgKeyboardArrowDownSmallIcon;
2494
2593
  exports.KeyboardArrowDownThinIcon = SvgKeyboardArrowDownThinIcon;
2495
2594
  exports.KeyboardArrowLeftAltIcon = KeyboradArrowLeftAltIcon;
2496
2595
  exports.KeyboardArrowRightAltIcon = KeyboardArrowRightAltIcon;
@@ -2514,7 +2613,10 @@ exports.MailAltIcon = SvgMailAltIcon;
2514
2613
  exports.MailIcon = SvgMailIcon;
2515
2614
  exports.MeanderIcon = SvgMeanderIcon;
2516
2615
  exports.MeasureAngleIcon = SvgMeasureAngleIcon;
2616
+ exports.MenuDotIcon = SvgMenuDotIcon;
2517
2617
  exports.MenuDotOutlineIcon = MenuDotOutlineIcon;
2618
+ exports.MenuLineIcon = SvgMenuLineIcon;
2619
+ exports.MessageIcon = SvgMessageIcon;
2518
2620
  exports.MicAltIcon = MicAltIcon;
2519
2621
  exports.MicIcon = MicIcon;
2520
2622
  exports.MilterIcon = SvgMilterIcon;
@@ -2523,6 +2625,7 @@ exports.MirrorAltIcon = SvgMirrorAltIcon;
2523
2625
  exports.MirrorBodyIcon = SvgMirrorBodyIcon;
2524
2626
  exports.MirrorComponentsIcon = SvgMirrorComponentsIcon;
2525
2627
  exports.MirrorIcon = SvgMirrorIcon;
2628
+ exports.MobileIcon = SvgMobileIcon;
2526
2629
  exports.ModesIcon = SvgModesIcon;
2527
2630
  exports.ModifyIcon = SvgModifyIcon;
2528
2631
  exports.ModuleIcon = SvgModuleIcon;
@@ -2536,11 +2639,13 @@ exports.MultiLineIcon = SvgMultiLineIcon;
2536
2639
  exports.MultipleAirwireIcon = SvgMultipleAirwireIcon;
2537
2640
  exports.NavArrowRightIcon = SvgNavArrowRight;
2538
2641
  exports.NetLabelIcon = SvgNetLabelIcon;
2642
+ exports.NewsFeedIcon = SvgNewsFeedIcon;
2539
2643
  exports.NewspaperIcon = NewspaperIcon;
2540
2644
  exports.NftFillIcon = NftFillIcon;
2541
2645
  exports.NftOutlineIcon = NftOutlineIcon;
2542
2646
  exports.NftPolygonOutlineIcon = NftPolygonOutlineIcon;
2543
2647
  exports.NoteAltIcon = NoteAltIcon;
2648
+ exports.NoteIcon = SvgNoteIcon;
2544
2649
  exports.NoteOutlineIcon = NoteOutlineIcon;
2545
2650
  exports.NotificationBellAltIcon = NotificationBellAltIcon;
2546
2651
  exports.NotificationBellAltSlashIcon = NotificationBellAltSlashIcon;
@@ -2555,12 +2660,14 @@ exports.PadIcon = SvgPadIcon;
2555
2660
  exports.PanToolIcon = PanToolIcon;
2556
2661
  exports.ParallelIcon = SvgParallelIcon;
2557
2662
  exports.PartIcon = SvgPartIcon;
2663
+ exports.PartsIcon = SvgPartsIcon;
2558
2664
  exports.PastIcon = SvgPastIcon;
2559
2665
  exports.PatternAltIcon = SvgPatternAltIcon;
2560
2666
  exports.PatternIcon = SvgPatternIcon;
2561
2667
  exports.PauseIcon = PauseIcon;
2562
2668
  exports.PauseOutlineIcon = PauseOutlineIcon;
2563
2669
  exports.PaypalIcon = PaypalIcon;
2670
+ exports.PcIcon = SvgPcIcon;
2564
2671
  exports.PerpendicularIcon = SvgPerpendicularIcon;
2565
2672
  exports.PersonBookIcon = PersonBookIcon;
2566
2673
  exports.PersonRemoveIcon = PersonRemoveIcon;
@@ -2582,6 +2689,7 @@ exports.ProductIcon = ProductIcon;
2582
2689
  exports.ProjectCreateIcon = ProjectCreateIcon;
2583
2690
  exports.ProjectToSketchIcon = SvgProjectToSketchIcon;
2584
2691
  exports.PushPinOutlineIcon = PushPinOutlineIcon;
2692
+ exports.QuestionAltIcon = SvgQuestionAltIcon;
2585
2693
  exports.QuestionMarkIcon = QuestionMarkIcon;
2586
2694
  exports.QuickReorderIcon = QuickReorderIcon;
2587
2695
  exports.QuickRouteAirwireIcon = SvgQuickRouteAirwireIcon;
@@ -2670,6 +2778,7 @@ exports.SymmetricIcon = SvgSymmetricIcon;
2670
2778
  exports.SymmetricOffsetIcon = SvgSymmetricOffsetIcon;
2671
2779
  exports.SystemLibraryIcon = SvgSystemLibraryIcon;
2672
2780
  exports.TacticIcon = TacticIcon;
2781
+ exports.TagIcon = SvgTagIcon;
2673
2782
  exports.TakeScreenshotIcon = SvgTakeScreenshotIcon;
2674
2783
  exports.TangentArcIcon = SvgTangentArcIcon;
2675
2784
  exports.TangentCircleIcon = SvgTangentCircleIcon;
@@ -2718,6 +2827,7 @@ exports.VerifiedIcon = VerifiedIcon;
2718
2827
  exports.VerifiedOutlineIcon = VerifiedOutlineIcon;
2719
2828
  exports.ViaIcon = SvgViaIcon;
2720
2829
  exports.VideoIcon = SvgVideoIcon;
2830
+ exports.WalletIcon = SvgWalletIcon;
2721
2831
  exports.WarningFillIcon = WarningFillIcon;
2722
2832
  exports.WarningIcon = WarningIcon;
2723
2833
  exports.XYKeyInIcon = SvgXYKeyInIcon;