@ideeza/icons 1.1.3 → 2.0.1

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,7 @@
1
+ import type { SVGProps } from "react";
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgArrowDownRightIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgArrowDownRightIcon;
@@ -0,0 +1,7 @@
1
+ import type { SVGProps } from "react";
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgArrowUpRightIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgArrowUpRightIcon;
@@ -0,0 +1,7 @@
1
+ import type { SVGProps } from "react";
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgCheckCircleFillIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgCheckCircleFillIcon;
@@ -0,0 +1,7 @@
1
+ import type { SVGProps } from "react";
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgDollarCircleIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgDollarCircleIcon;
@@ -0,0 +1,7 @@
1
+ import type { SVGProps } from "react";
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgHomeIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgHomeIcon;
@@ -0,0 +1,7 @@
1
+ import type { SVGProps } from "react";
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgSidebarCollapseIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgSidebarCollapseIcon;
@@ -0,0 +1,7 @@
1
+ import type { SVGProps } from "react";
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgTagIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgTagIcon;
@@ -0,0 +1,7 @@
1
+ import type { SVGProps } from "react";
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgTickIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgTickIcon;
@@ -0,0 +1,7 @@
1
+ import type { SVGProps } from "react";
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgUserPlusIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgUserPlusIcon;
@@ -0,0 +1,7 @@
1
+ import type { SVGProps } from "react";
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgUserSwitchIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgUserSwitchIcon;
@@ -0,0 +1,7 @@
1
+ import type { SVGProps } from "react";
2
+ interface SVGRProps {
3
+ title?: string;
4
+ titleId?: string;
5
+ }
6
+ declare const SvgWarningOutlineIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default SvgWarningOutlineIcon;
@@ -1,8 +1,13 @@
1
+ export { default as ArrowDownRightIcon } from "./ArrowDownRightIcon";
1
2
  export { default as ArrowLeftThinIcon } from "./ArrowLeftThinIcon";
3
+ export { default as ArrowUpRightIcon } from "./ArrowUpRightIcon";
2
4
  export { default as BlogIcon } from "./BlogIcon";
3
5
  export { default as CameraIcon } from "./CameraIcon";
6
+ export { default as CheckCircleFillIcon } from "./CheckCircleFillIcon";
4
7
  export { default as DashboardMenuIcon } from "./DashboardMenuIcon";
8
+ export { default as DollarCircleIcon } from "./DollarCircleIcon";
5
9
  export { default as FolderAltIcon } from "./FolderAltIcon";
10
+ export { default as HomeIcon } from "./HomeIcon";
6
11
  export { default as KeyboardCurveRightArrowIcon } from "./KeyboardCurveRightArrowIcon";
7
12
  export { default as LogoutCurveIcon } from "./LogoutCurveIcon";
8
13
  export { default as MessageIcon } from "./MessageIcon";
@@ -12,6 +17,12 @@ export { default as NoteIcon } from "./NoteIcon";
12
17
  export { default as PartsIcon } from "./PartsIcon";
13
18
  export { default as ReferAltIcon } from "./ReferAltIcon";
14
19
  export { default as SettingOutlineIcon } from "./SettingOutlineIcon";
20
+ export { default as SidebarCollapseIcon } from "./SidebarCollapseIcon";
15
21
  export { default as TagIcon } from "./TagIcon";
22
+ export { default as TickFillIcon } from "./TickFillIcon";
23
+ export { default as TickIcon } from "./TickIcon";
16
24
  export { default as UserCaptureAltIcon } from "./UserCaptureAltIcon";
25
+ export { default as UserPlusIcon } from "./UserPlusIcon";
17
26
  export { default as UserSmallIcon } from "./UserSmallIcon";
27
+ export { default as UserSwitchIcon } from "./UserSwitchIcon";
28
+ export { default as WarningOutlineIcon } from "./WarningOutlineIcon";
package/dist/index.cjs CHANGED
@@ -2354,16 +2354,26 @@ const ShareIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg
2354
2354
 
2355
2355
  const TwitterIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 11 10", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("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" })] }));
2356
2356
 
2357
+ const SvgArrowDownRightIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M14.167 14.167 5 5" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M9.167 14.89s4.694.396 5.407-.316c.712-.713.316-5.407.316-5.407" })] }));
2358
+
2357
2359
  const SvgArrowLeftThinIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.667, d: "M8.891 16.25q-2.557-2.414-5.116-4.835a1.666 1.666 0 0 1-.003-2.417q2.535-2.411 5.071-4.831M4.265 10.343H17.5" })] }));
2358
2360
 
2361
+ const SvgArrowUpRightIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M13.75 6.25 5 15" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M6.667 5.157s6.706-.566 7.724.452.452 7.724.452 7.724" })] }));
2362
+
2359
2363
  const SvgBlogIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("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" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M8.333 8.333h.833M8.333 12.5h3.333" }), jsxRuntimeExports.jsx("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" })] }));
2360
2364
 
2361
2365
  const SvgCameraIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M16.226 7.125c2.619.384 4.635 2.637 4.635 5.356v5.866a2.517 2.517 0 0 1-2.518 2.518H6.337a2.517 2.517 0 0 1-2.518-2.518v-5.866c0-2.719 2.016-4.972 4.634-5.356" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12.34 17.098a3.138 3.138 0 1 0 0-6.277 3.138 3.138 0 0 0 0 6.277M8.444 9.032V6.76a3.894 3.894 0 0 1 3.896-3.895 3.894 3.894 0 0 1 3.895 3.895V8.65" }), jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M12.3 8.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3" })] }));
2362
2366
 
2367
+ const SvgCheckCircleFillIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 73 72", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M36.5 66c-16.569 0-30-13.431-30-30s13.431-30 30-30 30 13.431 30 30-13.431 30-30 30m-2.991-18 21.21-21.213-4.242-4.242-16.968 16.971-8.487-8.487-4.242 4.242z" })] }));
2368
+
2363
2369
  const SvgDashboardMenuIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("g", { stroke: "currentColor", strokeWidth: 1.5, clipPath: "url(#dashboard-menu-icon_svg__a)", children: jsxRuntimeExports.jsx("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" }) }), jsxRuntimeExports.jsx("defs", { children: jsxRuntimeExports.jsx("clipPath", { id: "dashboard-menu-icon_svg__a", children: jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M0 0h20v20H0z" }) }) })] }));
2364
2370
 
2371
+ const SvgDollarCircleIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M4.58 8.607 2 8.454C3.849 3.704 9.158 1 14.333 2.344c5.513 1.433 8.788 6.918 7.314 12.25-1.219 4.411-5.304 7.337-9.8 7.406" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeDasharray: "0.5 3", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 22C6.5 22 2 17 2 11" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M13.604 9.722c-.352-.37-1.213-1.237-2.575-.62-1.361.615-1.577 2.596.482 2.807.93.095 1.537-.11 2.093.47.556.582.659 2.198-.761 2.634s-2.341-.284-2.588-.509m1.653-6.484v.79m0 6.337v.873" })] }));
2372
+
2365
2373
  const SvgFolderIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("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" })] }));
2366
2374
 
2375
+ const SvgHomeIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.6, d: "M8.904 3.999 5.179 6.703a5.28 5.28 0 0 0-1.92 5.906l1.422 4.38a5.28 5.28 0 0 0 5.017 3.646h4.606a5.28 5.28 0 0 0 5.016-3.647l1.422-4.379a5.275 5.275 0 0 0-1.92-5.897l-3.724-2.704a5.28 5.28 0 0 0-6.203 0z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.6, d: "M9.008 15.81c.332.254 1.721.895 3.588.712 1.204-.122 2.004-.345 2.397-.641" })] }));
2376
+
2367
2377
  const SvgKeyboardCurveRightArrowIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.667, d: "M5.833 2.5q3 2.843 5.997 5.694a2.5 2.5 0 0 1 .004 3.616q-2.97 2.84-5.942 5.69" })] }));
2368
2378
 
2369
2379
  const SvgLogoutAltIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.25, d: "M11.667 2.58q-.571-.08-1.167-.08c-4.418 0-8 3.358-8 7.5s3.582 7.5 8 7.5q.595 0 1.167-.08" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.25, d: "M17.5 10H9.167m8.333 0c0-.583-1.662-1.674-2.084-2.083M17.5 10c0 .584-1.662 1.674-2.084 2.083" })] }));
@@ -2382,12 +2392,24 @@ const SvgReferIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("
2382
2392
 
2383
2393
  const SvgSettingOutlineIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.667, d: "M11.159 3.99c-1.171-.21-1.208-1.678-2.38-1.47-1.17.21-.7 1.597-1.737 2.193s-2.006-.507-2.767.403c-.76.91.492 1.678.082 2.797C3.947 9.03 2.5 8.815 2.5 10s1.454.97 1.857 2.088-.85 1.887-.082 2.797 1.738-.187 2.767.403c1.03.589.56 1.99 1.738 2.192s1.208-1.26 2.379-1.469c1.17-.209 1.708 1.163 2.737.567s.112-1.745.88-2.655 2.058-.209 2.461-1.328-1.037-1.41-1.037-2.603 1.44-1.484 1.037-2.602c-.403-1.12-1.7-.418-2.461-1.328s.142-2.185-.94-2.685-1.506.806-2.677.597z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.667, d: "M10.1 12.432a2.431 2.431 0 1 0 0-4.863 2.431 2.431 0 0 0 0 4.863" })] }));
2384
2394
 
2385
- const SvgTagIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsxs("g", { stroke: "currentColor", strokeWidth: 1.5, clipPath: "url(#tag-icon_svg__a)", children: [jsxRuntimeExports.jsx("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" }), jsxRuntimeExports.jsx("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" }), jsxRuntimeExports.jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "m5.833 11.667 2.5 2.5" })] }), jsxRuntimeExports.jsx("defs", { children: jsxRuntimeExports.jsx("clipPath", { id: "tag-icon_svg__a", children: jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M0 0h20v20H0z" }) }) })] }));
2395
+ const SvgSidebarCollapseIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinejoin: "round", strokeWidth: 1.5, d: "M2 12c0-3.75 0-5.625.955-6.939A5 5 0 0 1 4.06 3.955C5.375 3 7.251 3 11 3h2c3.75 0 5.625 0 6.939.955a5 5 0 0 1 1.106 1.106C22 6.375 22 8.251 22 12s0 5.625-.955 6.939a5 5 0 0 1-1.106 1.106C18.625 21 16.749 21 13 21h-2c-3.75 0-5.625 0-6.939-.955a5 5 0 0 1-1.106-1.106C2 17.625 2 15.749 2 12ZM9.5 3.5v17" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M5 7h1.5M5 11h1.5M17 10l-1.226 1.057c-.516.445-.774.667-.774.943s.258.498.774.943L17 14" })] }));
2396
+
2397
+ const SvgTagIcon$1 = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsxs("g", { stroke: "currentColor", strokeWidth: 1.5, clipPath: "url(#tag-icon_svg__a)", children: [jsxRuntimeExports.jsx("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" }), jsxRuntimeExports.jsx("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" }), jsxRuntimeExports.jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "m5.833 11.667 2.5 2.5" })] }), jsxRuntimeExports.jsx("defs", { children: jsxRuntimeExports.jsx("clipPath", { id: "tag-icon_svg__a", children: jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M0 0h20v20H0z" }) }) })] }));
2398
+
2399
+ const SvgTagIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: [jsxRuntimeExports.jsx("path", { d: "M22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12Z", fill: "url(#paint0_linear_26413_165696)", stroke: "url(#paint1_linear_26413_165696)", strokeWidth: 2 }), jsxRuntimeExports.jsx("path", { d: "M7.83936 12.6192L10.5557 15.0003L16.1517 8.9917", stroke: "white", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntimeExports.jsxs("defs", { children: [jsxRuntimeExports.jsxs("linearGradient", { id: "paint0_linear_26413_165696", x1: 6, y1: 4, x2: 25.5, y2: 43, gradientUnits: "userSpaceOnUse", children: [jsxRuntimeExports.jsx("stop", { stopColor: "currentColor" }), jsxRuntimeExports.jsx("stop", { offset: 1, stopColor: "white" })] }), jsxRuntimeExports.jsxs("linearGradient", { id: "paint1_linear_26413_165696", x1: 4.5, y1: -0.999999, x2: 38, y2: 53.5, gradientUnits: "userSpaceOnUse", children: [jsxRuntimeExports.jsx("stop", { stopColor: "currentColor" }), jsxRuntimeExports.jsx("stop", { offset: 1, stopColor: "white" })] })] })] }));
2400
+
2401
+ const SvgTickIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M1 10.625 6.575 16 19 4" })] }));
2386
2402
 
2387
2403
  const SvgUserCaptureIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.667, d: "M7.612 2.083c-2.222.05-3.52.262-4.406 1.146-.776.773-1.036 1.86-1.122 3.604m10.304-4.75c2.222.05 3.52.262 4.407 1.146.776.773 1.035 1.86 1.122 3.604m-5.529 11.084c2.222-.051 3.52-.263 4.407-1.146.776-.774 1.035-1.86 1.122-3.604m-10.305 4.75c-2.222-.051-3.52-.263-4.406-1.146-.776-.774-1.036-1.86-1.122-3.604" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.667, d: "M6.25 14.167c1.943-2.036 5.536-2.131 7.5 0m-1.67-6.25c0 1.15-.935 2.083-2.087 2.083a2.085 2.085 0 0 1-2.086-2.083c0-1.151.934-2.084 2.086-2.084s2.086.933 2.086 2.084Z" })] }));
2388
2404
 
2405
+ const SvgUserPlusIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M5.18 15.296c-1.258.738-4.555 2.243-2.547 4.126.982.92 2.074 1.578 3.448 1.578h7.838c1.374 0 2.467-.658 3.447-1.578 2.009-1.883-1.288-3.389-2.546-4.126-2.95-1.728-6.69-1.728-9.64 0" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeWidth: 1.5, d: "M14 7a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M19.5 4v5M22 6.5h-5" })] }));
2406
+
2389
2407
  const SvgUserOutlineIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.667, d: "M10.024 9.429a3.677 3.677 0 1 0 0-7.354 3.677 3.677 0 0 0 0 7.354M4.02 16.49c-.657-.53-.813-1.469-.238-2.086 1.06-1.137 3.026-2.702 5.893-2.827 3.121-.144 5.34 1.507 6.505 2.671.585.586.486 1.511-.12 2.076l-1.222 1.137a1.67 1.67 0 0 1-1.135.447H6.37c-.38 0-.749-.13-1.045-.368z" })] }));
2390
2408
 
2409
+ const SvgUserSwitchIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M14 14.252v2.09A6 6 0 0 0 6 22l-2-.001a8 8 0 0 1 10-7.748zM12 13c-3.315 0-6-2.685-6-6s2.685-6 6-6 6 2.685 6 6-2.685 6-6 6m0-2c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4m6.586 6-1.829-1.828 1.415-1.415L22.414 18l-4.242 4.243-1.415-1.415L18.586 19H15v-2z" })] }));
2410
+
2411
+ const SvgWarningOutlineIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeMiterlimit: 10, strokeWidth: 2, d: "M12.103 19.5H7.196c-2.31 0-3.753-2.5-2.598-4.5l2.453-4.25L9.505 6.5c1.154-2 4.041-2 5.196 0l2.453 4.25L19.608 15c1.154 2-.29 4.5-2.599 4.5z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeMiterlimit: 10, strokeWidth: 2, d: "M12 12.254v4M12 8v1" })] }));
2412
+
2391
2413
  exports.AccountBalanceWalletIcon = AccountBalanceWalletIcon;
2392
2414
  exports.AccountTreeIcon = AccountTreeIcon;
2393
2415
  exports.AddImageIcon = AddImageIcon;
@@ -2420,11 +2442,13 @@ exports.ArcByCenterXPIcon = SvgArcByCenterXPIcon;
2420
2442
  exports.ArcIcon = SvgArcIcon;
2421
2443
  exports.ArduinoIcon = ArduinoIcon;
2422
2444
  exports.ArrowBackwardIcon = ArrowBackwardIcon;
2445
+ exports.ArrowDownRightIcon = SvgArrowDownRightIcon;
2423
2446
  exports.ArrowDownwardIcon = ArrowDownwardIcon;
2424
2447
  exports.ArrowForwardIcon = ArrowForwordIcon;
2425
2448
  exports.ArrowLeftThinIcon = SvgArrowLeftThinIcon;
2426
2449
  exports.ArrowSelectorToolIcon = SvgArrowSelectorToolIcon;
2427
2450
  exports.ArrowUpDownIcon = ArrowUpDownIcon;
2451
+ exports.ArrowUpRightIcon = SvgArrowUpRightIcon;
2428
2452
  exports.ArrowUpwardIcon = ArrowUpwordIcon;
2429
2453
  exports.AttachmentIcon = AttachmentIcon;
2430
2454
  exports.AutoCompleteBadgeIcon = SvgAutoCompleteBadgeIcon;
@@ -2460,6 +2484,7 @@ exports.CenterOutlineIcon = CenterOutlineIcon;
2460
2484
  exports.ChatBubbleIcon = ChatBubbleIcon;
2461
2485
  exports.CheckBoxCheckedIcon = CheckBoxCheckedIcon;
2462
2486
  exports.CheckBoxUncheckedIcon = CheckBoxUncheckedIcon;
2487
+ exports.CheckCircleFillIcon = SvgCheckCircleFillIcon;
2463
2488
  exports.ChevronDownIcon = SvgChevronDownIcon;
2464
2489
  exports.ChevronForwardIcon = ChevronForwardIcon;
2465
2490
  exports.CircleBy3XPIcon = SvgCircleBy3XPIcon;
@@ -2538,6 +2563,7 @@ exports.DistenceBetween2PointFlatIcon = SvgDistenceBetween2PointFlatIcon;
2538
2563
  exports.DiversityIcon = DiversityIcon;
2539
2564
  exports.DoNotDistrubIcon = DoNotDistrubIcon;
2540
2565
  exports.DollarBagIcon = DollarBagIcon;
2566
+ exports.DollarCircleIcon = SvgDollarCircleIcon;
2541
2567
  exports.DoneAllIcon = DoneAllIcon;
2542
2568
  exports.DoublePlayIcon = SvgDoublePlayIcon;
2543
2569
  exports.DoubleSettingIcon = DoubleSettingIcon;
@@ -2608,6 +2634,7 @@ exports.HideIcon = HideIcon;
2608
2634
  exports.Hole2AltIcon = SvgHole2AltIcon;
2609
2635
  exports.HoleAltIcon = SvgHoleAltIcon;
2610
2636
  exports.HoleIcon = SvgHoleIcon;
2637
+ exports.HomeIcon = SvgHomeIcon;
2611
2638
  exports.HumbergerIcon = SvgHumbergurIcon;
2612
2639
  exports.IcIcon = IcIcon;
2613
2640
  exports.IdeezaIcon = IdeezaIcon;
@@ -2797,6 +2824,7 @@ exports.ShieldOutlineIcon = ShieldOutlineIcon;
2797
2824
  exports.ShopingBagCoinIcon = ShopingBagCoinIcon;
2798
2825
  exports.ShoppingCartIcon = ShoppingCartIcon;
2799
2826
  exports.ShowGridIcon = SvgShowGridIcon;
2827
+ exports.SidebarCollapseIcon = SvgSidebarCollapseIcon;
2800
2828
  exports.SignalIcon = SvgSignalIcon;
2801
2829
  exports.SketchIcon = SvgSketchIcon;
2802
2830
  exports.SliceIcon = SvgSliceIcon;
@@ -2818,7 +2846,7 @@ exports.SymmetricIcon = SvgSymmetricIcon;
2818
2846
  exports.SymmetricOffsetIcon = SvgSymmetricOffsetIcon;
2819
2847
  exports.SystemLibraryIcon = SvgSystemLibraryIcon;
2820
2848
  exports.TacticIcon = TacticIcon;
2821
- exports.TagIcon = SvgTagIcon;
2849
+ exports.TagIcon = SvgTagIcon$1;
2822
2850
  exports.TakeScreenshotIcon = SvgTakeScreenshotIcon;
2823
2851
  exports.TangentArcIcon = SvgTangentArcIcon;
2824
2852
  exports.TangentCircleIcon = SvgTangentCircleIcon;
@@ -2837,6 +2865,8 @@ exports.ThreeStarIcon = ThreeStarIcon;
2837
2865
  exports.ThumbDownAltIcon = ThumbDownAltIcon;
2838
2866
  exports.ThumbUpAltIcon = ThumbUpAltIcon;
2839
2867
  exports.ThumbsUpOutlineIcon = ThumbsUpOutlineIcon;
2868
+ exports.TickFillIcon = SvgTagIcon;
2869
+ exports.TickIcon = SvgTickIcon;
2840
2870
  exports.TickThinIcon = TickThinIcon;
2841
2871
  exports.TopIcon = SvgTopIcon;
2842
2872
  exports.TorusIcon = SvgTorusIcon;
@@ -2862,7 +2892,9 @@ exports.UserDoubleIcon = UserDoubleIcon;
2862
2892
  exports.UserGroupAltIcon = UserGroupAltIcon;
2863
2893
  exports.UserGroupIcon = UserGroupIcon;
2864
2894
  exports.UserOutlineIcon = UserOutlineIcon;
2895
+ exports.UserPlusIcon = SvgUserPlusIcon;
2865
2896
  exports.UserSmallIcon = SvgUserOutlineIcon;
2897
+ exports.UserSwitchIcon = SvgUserSwitchIcon;
2866
2898
  exports.VccIcon = SvgVccIcon;
2867
2899
  exports.VerifiedAltFillIcon = SvgVerifiedAltFillIcon;
2868
2900
  exports.VerifiedIcon = VerifiedIcon;
@@ -2872,6 +2904,7 @@ exports.VideoIcon = SvgVideoIcon;
2872
2904
  exports.WalletIcon = SvgWalletIcon;
2873
2905
  exports.WarningFillIcon = WarningFillIcon;
2874
2906
  exports.WarningIcon = WarningIcon;
2907
+ exports.WarningOutlineIcon = SvgWarningOutlineIcon;
2875
2908
  exports.XYKeyInIcon = SvgXYKeyInIcon;
2876
2909
  exports.ZeroOriginIcon = SvgZeroOriginIcon;
2877
2910
  exports.ZoomInAltIcon = SvgZoomInAltIcon;