@ideeza/icons 2.0.2 → 2.0.4
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/icons/file/index.d.ts +1 -0
- package/dist/icons/file/upload.d.ts +3 -0
- package/dist/icons/general/home.d.ts +3 -0
- package/dist/icons/others/new.d.ts +3 -0
- package/dist/icons/social/facebook.d.ts +3 -0
- package/dist/icons/v2/general/BroadcastIcon.d.ts +7 -0
- package/dist/icons/v2/general/CalendarOutlineIcon.d.ts +7 -0
- package/dist/icons/v2/general/PawStationIcon.d.ts +7 -0
- package/dist/icons/v2/general/PayRollIcon.d.ts +7 -0
- package/dist/icons/v2/general/PrintQueueIcon.d.ts +7 -0
- package/dist/icons/v2/general/ShareitIcon.d.ts +7 -0
- package/dist/icons/v2/general/ShieldIcon.d.ts +7 -0
- package/dist/icons/v2/general/ShieldKeyIcon.d.ts +7 -0
- package/dist/icons/v2/general/ShieldLockIcon.d.ts +7 -0
- package/dist/icons/v2/general/SystemHubIcon.d.ts +7 -0
- package/dist/icons/v2/general/UafoIcon.d.ts +7 -0
- package/dist/icons/v2/general/UnlockIcon.d.ts +7 -0
- package/dist/icons/v2/general/UserDoubleFillIcon.d.ts +7 -0
- package/dist/icons/v2/general/UserRecognitionIcon.d.ts +7 -0
- package/dist/icons/v2/general/UserSettingIcon.d.ts +7 -0
- package/dist/icons/v2/general/WireNodeIcon.d.ts +7 -0
- package/dist/icons/v2/general/index.d.ts +16 -0
- package/dist/index.cjs +48 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.esm.js +33 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as UploadIcon } from './upload';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgBroadcastIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgBroadcastIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgCalendarOutlineIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgCalendarOutlineIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgPawStationIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgPawStationIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgPayRollIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgPayRollIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgPrintQueueIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgPrintQueueIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgShareitIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgShareitIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgShieldIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgShieldIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgShieldKeyIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgShieldKeyIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgShieldLockIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgShieldLockIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgSystemHubIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgSystemHubIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgUafoIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgUafoIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgUnlockIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgUnlockIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgUserDoubleFillIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgUserDoubleFillIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgUserRecognitionIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgUserRecognitionIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgUserSettingIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgUserSettingIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgWireNodeIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgWireNodeIcon;
|
|
@@ -2,6 +2,8 @@ export { default as ArrowDownRightIcon } from "./ArrowDownRightIcon";
|
|
|
2
2
|
export { default as ArrowLeftThinIcon } from "./ArrowLeftThinIcon";
|
|
3
3
|
export { default as ArrowUpRightIcon } from "./ArrowUpRightIcon";
|
|
4
4
|
export { default as BlogIcon } from "./BlogIcon";
|
|
5
|
+
export { default as BroadcastIcon } from "./BroadcastIcon";
|
|
6
|
+
export { default as CalendarOutlineIcon } from "./CalendarOutlineIcon";
|
|
5
7
|
export { default as CameraIcon } from "./CameraIcon";
|
|
6
8
|
export { default as CheckCircleFillIcon } from "./CheckCircleFillIcon";
|
|
7
9
|
export { default as DashboardMenuIcon } from "./DashboardMenuIcon";
|
|
@@ -15,14 +17,28 @@ export { default as MoonHalfIcon } from "./MoonHalfIcon";
|
|
|
15
17
|
export { default as NewsFeedIcon } from "./NewsFeedIcon";
|
|
16
18
|
export { default as NoteIcon } from "./NoteIcon";
|
|
17
19
|
export { default as PartsIcon } from "./PartsIcon";
|
|
20
|
+
export { default as PawStationIcon } from "./PawStationIcon";
|
|
21
|
+
export { default as PayRollIcon } from "./PayRollIcon";
|
|
22
|
+
export { default as PrintQueueIcon } from "./PrintQueueIcon";
|
|
18
23
|
export { default as ReferAltIcon } from "./ReferAltIcon";
|
|
19
24
|
export { default as SettingOutlineIcon } from "./SettingOutlineIcon";
|
|
25
|
+
export { default as ShareitIcon } from "./ShareitIcon";
|
|
26
|
+
export { default as ShieldIcon } from "./ShieldIcon";
|
|
27
|
+
export { default as ShieldKeyIcon } from "./ShieldKeyIcon";
|
|
28
|
+
export { default as ShieldLockIcon } from "./ShieldLockIcon";
|
|
20
29
|
export { default as SidebarCollapseIcon } from "./SidebarCollapseIcon";
|
|
30
|
+
export { default as SystemHubIcon } from "./SystemHubIcon";
|
|
21
31
|
export { default as TagIcon } from "./TagIcon";
|
|
22
32
|
export { default as TickFillIcon } from "./TickFillIcon";
|
|
23
33
|
export { default as TickIcon } from "./TickIcon";
|
|
34
|
+
export { default as UafoIcon } from "./UafoIcon";
|
|
35
|
+
export { default as UnlockIcon } from "./UnlockIcon";
|
|
24
36
|
export { default as UserCaptureAltIcon } from "./UserCaptureAltIcon";
|
|
37
|
+
export { default as UserDoubleFillIcon } from "./UserDoubleFillIcon";
|
|
25
38
|
export { default as UserPlusIcon } from "./UserPlusIcon";
|
|
39
|
+
export { default as UserRecognitionIcon } from "./UserRecognitionIcon";
|
|
40
|
+
export { default as UserSettingIcon } from "./UserSettingIcon";
|
|
26
41
|
export { default as UserSmallIcon } from "./UserSmallIcon";
|
|
27
42
|
export { default as UserSwitchIcon } from "./UserSwitchIcon";
|
|
28
43
|
export { default as WarningOutlineIcon } from "./WarningOutlineIcon";
|
|
44
|
+
export { default as WireNodeIcon } from "./WireNodeIcon";
|
package/dist/index.cjs
CHANGED
|
@@ -2362,6 +2362,10 @@ const SvgArrowUpRightIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports
|
|
|
2362
2362
|
|
|
2363
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" })] }));
|
|
2364
2364
|
|
|
2365
|
+
const SvgBroadcastIcon = ({ 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: "M2 10c0-3.317 2.683-6 6-6l-.857 1.714M22 14c0 3.317-2.683 6-6 6l.857-1.714M17.25 2.516c1.83-.755 3.442-.504 4.315-.344.249.046.435.29.435.573v6.46c0 .338-.262.59-.56.538-.896-.159-2.443-.355-4.19.365-1.878.775-3.768.92-4.8.888-.256-.008-.45-.25-.45-.54V3.996c0-.333.255-.595.551-.59 1.05.02 2.88-.14 4.699-.89M7.25 13.516c1.83-.755 3.441-.504 4.315-.344.249.046.435.29.435.573v6.46c0 .338-.262.59-.56.538-.896-.159-2.443-.355-4.19.366-1.878.774-3.768.92-4.8.887-.256-.008-.45-.25-.45-.54v-6.461c0-.333.255-.595.551-.59 1.05.02 2.88-.14 4.699-.89" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M17 6.5h.009M7 17.5h.009" })] }));
|
|
2366
|
+
|
|
2367
|
+
const SvgCalendarOutlineIcon = ({ 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: "M18 2v2M6 2v2M2.5 12.243c0-4.357 0-6.536 1.252-7.89C5.004 3 7.02 3 11.05 3h1.9c4.03 0 6.046 0 7.298 1.354C21.5 5.707 21.5 7.886 21.5 12.244v.513c0 4.357 0 6.536-1.252 7.89C18.996 22 16.98 22 12.95 22h-1.9c-4.03 0-6.046 0-7.298-1.354C2.5 19.293 2.5 17.114 2.5 12.756zM3 8h18" })] }));
|
|
2368
|
+
|
|
2365
2369
|
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" })] }));
|
|
2366
2370
|
|
|
2367
2371
|
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" })] }));
|
|
@@ -2388,28 +2392,56 @@ const SvgNoteIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("s
|
|
|
2388
2392
|
|
|
2389
2393
|
const SvgPartsIcon = ({ 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", 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" })] }));
|
|
2390
2394
|
|
|
2395
|
+
const SvgPawStationIcon = ({ 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: "M21.01 5.71v12.81H14.5v-2.5h-5v2.5H2.99V5.71h6.3c0 1.5 1.21 2.71 2.71 2.71s2.71-1.21 2.71-2.71z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 8.42A2.71 2.71 0 1 0 12 3a2.71 2.71 0 0 0 0 5.42M14.5 16.02h-5v4.99h5zM6.27 11.87 6.7 15l3.93-3.8 2.63 2.14 3.85-4.38.7 3.76" }), jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "m4.85 12.51 1.13-2.77 1.84 2.36zM16.26 12.56l1.94 2.27 1-2.82z" })] }));
|
|
2396
|
+
|
|
2397
|
+
const SvgPayRollIcon = ({ 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", strokeWidth: 1.5, d: "M14 2.2q-.97-.198-2-.2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10q-.002-1.03-.2-2" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M12 9c-1.105 0-2 .672-2 1.5s.895 1.5 2 1.5 2 .672 2 1.5-.895 1.5-2 1.5m0-6c.87 0 1.612.417 1.886 1M12 9V8m0 7c-.87 0-1.612-.417-1.886-1M12 15v1" }), jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M22.07 3.033a.75.75 0 0 0-1.056-1.066zm-5.598 3.434a.75.75 0 0 0 1.056 1.066zm4.556-4.24-.13.738zm.745.744.738-.13zM17.51 1.254a.75.75 0 1 0-.02 1.5zm3.736 5.256a.75.75 0 0 0 1.5-.02zm.296-4.01-.528-.533-4.542 4.5L17 7l.528.533 4.542-4.5zm-.514-.273-.13.738c.05.01.078.028.093.044a.17.17 0 0 1 .043.093l.739-.13.738-.131a1.65 1.65 0 0 0-1.352-1.353zm0 0 .131-.739c-1.015-.18-2.812-.223-3.649-.234l-.01.75-.01.75c.867.012 2.536.057 3.408.211zm.968 4.273.75-.01c-.012-.837-.055-2.635-.235-3.65l-.738.131-.739.131c.155.872.2 2.54.212 3.408z" })] }));
|
|
2398
|
+
|
|
2399
|
+
const SvgPrintQueueIcon = ({ 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: "M20.03 7.46h-3.8v9.09h3.8zM6.44 9.52v-6.5h11.69v.9M18.13 20.08v.9H6.44v-6.5" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6.44 14.48a2.48 2.48 0 1 0 0-4.96 2.48 2.48 0 0 0 0 4.96M11.76 8.96h1.46M11.76 12h1.46M11.76 15.04h1.46" })] }));
|
|
2400
|
+
|
|
2391
2401
|
const SvgReferIcon = ({ 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.933 6.002v-2.08c0-.313.189-.538.472-.582a.52.52 0 0 1 .473.16l2.335 2.291c.676.67 1.36 1.331 2.036 2 .335.328.335.64 0 .968-1.447 1.425-2.895 2.843-4.342 4.276-.32.313-.764.21-.916-.102a.8.8 0 0 1-.066-.313v-2.043c-.24.029-.465.05-.69.087-1.79.298-3.288 1.178-4.633 2.356-.117.102-.233.197-.4.204-.386.014-.648-.29-.59-.713.117-.829.284-1.65.582-2.436C6.69 8.773 7.46 7.682 8.667 6.94c.742-.458 1.55-.72 2.4-.843.277-.044.553-.066.851-.102z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.667, d: "M8.078 4.693H5.845A3.346 3.346 0 0 0 2.5 8.04v5.949a3.346 3.346 0 0 0 3.345 3.345h5.95a3.35 3.35 0 0 0 3.192-2.342" })] }));
|
|
2392
2402
|
|
|
2393
2403
|
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" })] }));
|
|
2394
2404
|
|
|
2405
|
+
const SvgShareitIcon = ({ 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.77 14.82c-.14-.57-.21-1.17-.21-1.78 0-3.39 2.27-6.26 5.37-7.16M17.16 18.41A7.42 7.42 0 0 1 12 20.49c-2 0-3.82-.79-5.16-2.08M14.07 5.88c3.1.9 5.37 3.76 5.37 7.16 0 .61-.07 1.21-.21 1.78" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeMiterlimit: 10, strokeWidth: 2, d: "M13.08 3.51h-2.15a1 1 0 0 0-1 1v2.15a1 1 0 0 0 1 1h2.15a1 1 0 0 0 1-1V4.51a1 1 0 0 0-1-1ZM3.217 16.863l1.075 1.862a1 1 0 0 0 1.366.366l1.862-1.075a1 1 0 0 0 .366-1.366l-1.075-1.862a1 1 0 0 0-1.366-.366l-1.862 1.075a1 1 0 0 0-.366 1.366ZM19.703 18.729l1.075-1.863a1 1 0 0 0-.366-1.365l-1.862-1.075a1 1 0 0 0-1.366.365l-1.075 1.863a1 1 0 0 0 .366 1.366l1.862 1.075a1 1 0 0 0 1.366-.366Z" })] }));
|
|
2406
|
+
|
|
2407
|
+
const SvgShieldIcon = ({ 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", strokeWidth: 2, d: "M21 11.183V8.28c0-1.64 0-2.46-.404-2.995s-1.318-.794-3.145-1.314a24.6 24.6 0 0 1-3.229-1.173C13.023 2.266 12.424 2 12 2s-1.023.266-2.222.798c-.88.39-1.98.818-3.229 1.173-1.827.52-2.74.78-3.145 1.314C3 5.82 3 6.64 3 8.28v2.903c0 5.625 5.063 9 7.594 10.336.607.32.91.481 1.406.481s.799-.16 1.406-.48C15.937 20.182 21 16.807 21 11.182Z" })] }));
|
|
2408
|
+
|
|
2409
|
+
const SvgShieldKeyIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 36 36", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "m18 1.5 12.326 2.739A1.5 1.5 0 0 1 31.5 5.703v14.98a9 9 0 0 1-4.008 7.489L18 34.5l-9.492-6.328A9 9 0 0 1 4.5 20.685V5.703a1.5 1.5 0 0 1 1.175-1.464zm0 3.074L7.5 6.906v13.778a6 6 0 0 0 2.672 4.991L18 30.896l7.828-5.22a6 6 0 0 0 2.672-4.99V6.906L18 4.575zm0 5.926a3 3 0 0 1 1.502 5.598L19.5 22.5h-3v-6.402A3 3 0 0 1 18 10.5" })] }));
|
|
2410
|
+
|
|
2411
|
+
const SvgShieldLockIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 25 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "M10.837 10.38c-1.08 0-1.62.78-1.74 1.26s-.12 2.22-.048 2.94c.24.9.84 1.272 1.428 1.392.54.048 2.82.03 3.48.03.96.018 1.68-.342 1.98-1.422.06-.36.12-2.34-.03-2.94-.318-.96-1.11-1.26-1.71-1.26zM10.75 9.959c0-.06.008-.406.01-.84 0-.398-.034-.78.156-1.13.71-1.414 2.75-1.27 3.254.17.087.237.093.612.09.96-.003.443.006.84.006.84" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "M21.5 11.183V8.28c0-1.64 0-2.46-.404-2.995s-1.318-.794-3.145-1.314a24.6 24.6 0 0 1-3.229-1.173C13.523 2.266 12.924 2 12.5 2s-1.023.266-2.222.798c-.88.39-1.98.818-3.229 1.173-1.827.52-2.74.78-3.145 1.314C3.5 5.82 3.5 6.64 3.5 8.28v2.903c0 5.625 5.063 9 7.594 10.336.607.32.91.481 1.406.481s.799-.16 1.406-.48c2.531-1.337 7.594-4.712 7.594-10.337Z" })] }));
|
|
2412
|
+
|
|
2395
2413
|
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
2414
|
|
|
2415
|
+
const SvgSystemHubIcon = ({ 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", stroke: "currentColor", strokeWidth: 0.75, d: "M3.375 3.75c.614 0 1.14.37 1.373.9l.099.225h2.278c.12 0 .233.058.304.155v.001l1.592 2.204q-.319.201-.607.44L7.046 5.78l-.112-.155H4.847l-.099.225a1.499 1.499 0 0 1-2.873-.6 1.5 1.5 0 0 1 1.5-1.5ZM3.375 10.5c.614 0 1.14.37 1.373.9l.099.225H6.39c-.02.256-.02.494 0 .75H4.847l-.099.225a1.499 1.499 0 0 1-2.873-.6 1.5 1.5 0 0 1 1.5-1.5Z" }), jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M10.125 3.375a1.875 1.875 0 1 1 2.625 1.717V6.81a4.8 4.8 0 0 0-1.5 0V5.092a1.87 1.87 0 0 1-1.125-1.717M14.432 7.352l1.835-2.541a.75.75 0 0 1 .608-.311h2.033a1.874 1.874 0 0 1 3.592.75 1.875 1.875 0 0 1-3.592.75h-1.65l-1.612 2.231a5.3 5.3 0 0 0-1.214-.88M22.5 18.75a1.875 1.875 0 0 1-3.592.75h-2.033a.75.75 0 0 1-.608-.311l-1.835-2.541a5.3 5.3 0 0 0 1.215-.88L17.258 18h1.65a1.874 1.874 0 0 1 3.592.75M9.568 16.649l-1.835 2.54a.75.75 0 0 1-.608.311H5.092a1.874 1.874 0 0 1-3.592-.75A1.875 1.875 0 0 1 5.092 18h1.65l1.612-2.231c.359.348.767.645 1.214.88M22.5 12a1.875 1.875 0 0 1-3.592.75H17.19c.08-.553.08-.947 0-1.5h1.718A1.874 1.874 0 0 1 22.5 12M13.875 20.625a1.875 1.875 0 1 1-2.625-1.717V17.19c.553.08.947.08 1.5 0v1.718c.662.29 1.125.948 1.125 1.717M16.125 12a4.125 4.125 0 1 1-8.25 0 4.125 4.125 0 0 1 8.25 0" })] }));
|
|
2416
|
+
|
|
2397
2417
|
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
2418
|
|
|
2399
2419
|
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
2420
|
|
|
2401
2421
|
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" })] }));
|
|
2402
2422
|
|
|
2423
|
+
const SvgUafoIcon = ({ 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: "M13.151 4.467a.889.889 0 0 0-1.512-.934l-1.18 1.91a1 1 0 0 0 .837 1.526l-.349.564a.889.889 0 0 0 1.513.934l1.08-1.75a1 1 0 0 0-.836-1.526zM13.778 17.111a.89.89 0 0 0-.889.89.889.889 0 0 1-1.778 0 .889.889 0 0 0-1.777 0 2.667 2.667 0 1 0 5.333 0 .89.89 0 0 0-.89-.89" }), jsxRuntimeExports.jsx("path", { fill: "currentColor", fillRule: "evenodd", d: "M19.556 8.444v1.297A4.27 4.27 0 0 1 22 13.6c0 .59-.478 1.067-1.067 1.067H18.89v1.778a6.667 6.667 0 0 1-6.667 6.666h-.444a6.667 6.667 0 0 1-6.667-6.666v-1.778H3.067C2.477 14.667 2 14.189 2 13.6c0-1.704 1-3.176 2.444-3.86V8.445a7.556 7.556 0 0 1 15.112 0m-1.778 0v.89H6.222v-.89a5.778 5.778 0 1 1 11.556 0m-10.89 8v-1.777h10.223v1.778c0 2.7-2.189 4.888-4.889 4.888h-.444a4.89 4.89 0 0 1-4.89-4.888M20.12 12.89a2.49 2.49 0 0 0-2.386-1.778H6.267A2.49 2.49 0 0 0 3.88 12.89z", clipRule: "evenodd" })] }));
|
|
2424
|
+
|
|
2425
|
+
const SvgUnlockIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 25 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeWidth: 1.5, d: "M4.768 18.845c.225 1.67 1.608 2.979 3.292 3.056 1.416.065 2.855.099 4.44.099s3.024-.034 4.44-.1c1.684-.076 3.067-1.385 3.292-3.055.147-1.09.268-2.207.268-3.345s-.121-2.255-.268-3.345c-.225-1.67-1.608-2.979-3.292-3.056A95 95 0 0 0 12.5 9c-1.585 0-3.024.034-4.44.1-1.684.076-3.067 1.385-3.292 3.055-.147 1.09-.268 2.207-.268 3.345s.121 2.255.268 3.345Z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M8 9V6.5A4.5 4.5 0 0 1 12.5 2c1.96 0 3.5 1.5 4 3" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12.496 15.5h.01" })] }));
|
|
2426
|
+
|
|
2403
2427
|
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" })] }));
|
|
2404
2428
|
|
|
2429
|
+
const SvgUserDoubleFillIcon = ({ 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", fillRule: "evenodd", d: "M12.025 7.578c0-2.114 1.745-3.828 3.898-3.828s3.898 1.714 3.898 3.828-1.745 3.828-3.898 3.828-3.898-1.714-3.898-3.828", clipRule: "evenodd" }), jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M9.08 17.671c.886-2.887 3.615-4.99 6.843-4.99 3.229 0 5.957 2.103 6.844 4.99.339 1.105-.441 2.15-1.578 2.358-1.21.222-2.986.441-5.266.441s-4.055-.22-5.266-.44c-1.136-.209-1.916-1.255-1.577-2.359M7 5.25c-1.866 0-3.378 1.538-3.378 3.434S5.134 12.118 7 12.118s3.378-1.537 3.378-3.434C10.378 6.788 8.866 5.25 7 5.25M7 13.263c-2.798 0-5.163 1.886-5.93 4.476-.295.99.381 1.929 1.366 2.115 1.05.199 2.588.396 4.564.396l.267-.001a2.12 2.12 0 0 1-.68-2.233 8.12 8.12 0 0 1 2.882-4.233A6.1 6.1 0 0 0 7 13.263" })] }));
|
|
2430
|
+
|
|
2405
2431
|
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
2432
|
|
|
2433
|
+
const SvgUserRecognitionIcon = ({ 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: "m19.333 14 .824.758c.179.176.268.264.237.339s-.159.075-.412.075h-3.104C15.288 15.172 14 16.438 14 18c0 .352.066.69.185 1m2.482 3-.824-.758c-.179-.176-.268-.264-.237-.339s.159-.075.412-.075h3.104C20.712 20.828 22 19.562 22 18c0-.352-.066-.69-.185-1" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M21.991 11.5C22 10.9 22 10.736 22 10c0-3.771 0-5.657-1.172-6.828S17.771 2 14 2h-4C6.229 2 4.343 2 3.172 3.172S2 6.229 2 10s0 5.657 1.172 6.828S6.229 18 10 18h1" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M18.5 10h-.009M5.5 10h-.009" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeWidth: 1.5, d: "M14.5 10a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Z" })] }));
|
|
2434
|
+
|
|
2435
|
+
const SvgUserSettingIcon = ({ 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: "M11.5 14.012a10.6 10.6 0 0 0-5.922 1.47c-1.415.842-5.125 2.562-2.865 4.715C3.816 21.248 5.045 22 6.59 22H12" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeWidth: 2, d: "M15.5 6.5a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0Z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "M18 20.714V22m0-1.286a3.36 3.36 0 0 1-2.774-1.43M18 20.713a3.36 3.36 0 0 0 2.774-1.43m-5.548 0L14 20.07m1.226-.788a3.12 3.12 0 0 1 0-3.566m5.548 3.566 1.226.788m-1.226-.788a3.12 3.12 0 0 0 0-3.566M18 14.286c1.157 0 2.176.568 2.774 1.43M18 14.287a3.36 3.36 0 0 0-2.774 1.43M18 14.287V13m2.774 2.717L22 14.929m-6.774.788L14 14.929" })] }));
|
|
2436
|
+
|
|
2407
2437
|
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" })] }));
|
|
2408
2438
|
|
|
2409
2439
|
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
2440
|
|
|
2411
2441
|
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
2442
|
|
|
2443
|
+
const SvgWireNodeIcon = ({ 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: "M7.7 3.99v7.31M9.46 11.3H5.93v3.53h3.53zM14.31 6.7V3.22M16.07 6.7h-3.53v3.53h3.53zM14.31 20.8v-3.63M12.54 17.17h3.53v-3.53h-3.53z" })] }));
|
|
2444
|
+
|
|
2413
2445
|
exports.AccountBalanceWalletIcon = AccountBalanceWalletIcon;
|
|
2414
2446
|
exports.AccountTreeIcon = AccountTreeIcon;
|
|
2415
2447
|
exports.AddImageIcon = AddImageIcon;
|
|
@@ -2473,10 +2505,12 @@ exports.Box3DAltIcon = SvgBox3DAltIcon;
|
|
|
2473
2505
|
exports.Box3DIcon = SvgBox3DIcon;
|
|
2474
2506
|
exports.BoxAxisIcon = SvgBoxAxisIcon;
|
|
2475
2507
|
exports.BoxIcon = BoxIcon;
|
|
2508
|
+
exports.BroadcastIcon = SvgBroadcastIcon;
|
|
2476
2509
|
exports.BrushIcon = BrushIcon;
|
|
2477
2510
|
exports.BugIcon = BugIcon;
|
|
2478
2511
|
exports.BusIcon = SvgBusIcon;
|
|
2479
2512
|
exports.CADDirectIcon = SvgCADDirectIcon;
|
|
2513
|
+
exports.CalendarOutlineIcon = SvgCalendarOutlineIcon;
|
|
2480
2514
|
exports.CameraIcon = SvgCameraIcon;
|
|
2481
2515
|
exports.CardIcon = CardIcon;
|
|
2482
2516
|
exports.CenterFocusIcon = CenterFocusIcon;
|
|
@@ -2731,6 +2765,8 @@ exports.PatternAltIcon = SvgPatternAltIcon;
|
|
|
2731
2765
|
exports.PatternIcon = SvgPatternIcon;
|
|
2732
2766
|
exports.PauseIcon = PauseIcon;
|
|
2733
2767
|
exports.PauseOutlineIcon = PauseOutlineIcon;
|
|
2768
|
+
exports.PawStationIcon = SvgPawStationIcon;
|
|
2769
|
+
exports.PayRollIcon = SvgPayRollIcon;
|
|
2734
2770
|
exports.PaypalIcon = PaypalIcon;
|
|
2735
2771
|
exports.PcIcon = SvgPcIcon;
|
|
2736
2772
|
exports.PerpendicularIcon = SvgPerpendicularIcon;
|
|
@@ -2750,6 +2786,7 @@ exports.PolygonByCenterIcon = SvgPolygonByCenterIcon;
|
|
|
2750
2786
|
exports.PolygonIcon = SvgPolygonIcon;
|
|
2751
2787
|
exports.PolygonPourIcon = SvgPolygonPourIcon;
|
|
2752
2788
|
exports.PortIcon = SvgPortIcon;
|
|
2789
|
+
exports.PrintQueueIcon = SvgPrintQueueIcon;
|
|
2753
2790
|
exports.ProductIcon = ProductIcon;
|
|
2754
2791
|
exports.ProjectCreateIcon = ProjectCreateIcon;
|
|
2755
2792
|
exports.ProjectToSketchIcon = SvgProjectToSketchIcon;
|
|
@@ -2817,9 +2854,13 @@ exports.SettingOutlineIcon = SvgSettingOutlineIcon;
|
|
|
2817
2854
|
exports.SettingsApplicationIcon = SettingsApplicationIcon;
|
|
2818
2855
|
exports.ShareAltIcon = ShareAltIcon;
|
|
2819
2856
|
exports.ShareIcon = ShareIcon;
|
|
2857
|
+
exports.ShareitIcon = SvgShareitIcon;
|
|
2820
2858
|
exports.SheetMetalIcom = SvgSheetMetalIcom;
|
|
2821
2859
|
exports.ShellIcon = SvgShellIcon;
|
|
2822
2860
|
exports.ShieldAltIcon = ShieldAltIcon;
|
|
2861
|
+
exports.ShieldIcon = SvgShieldIcon;
|
|
2862
|
+
exports.ShieldKeyIcon = SvgShieldKeyIcon;
|
|
2863
|
+
exports.ShieldLockIcon = SvgShieldLockIcon;
|
|
2823
2864
|
exports.ShieldOutlineIcon = ShieldOutlineIcon;
|
|
2824
2865
|
exports.ShopingBagCoinIcon = ShopingBagCoinIcon;
|
|
2825
2866
|
exports.ShoppingCartIcon = ShoppingCartIcon;
|
|
@@ -2844,6 +2885,7 @@ exports.SunnyIcon = SunnyIcon;
|
|
|
2844
2885
|
exports.SweepIcon = SvgSweepIcon;
|
|
2845
2886
|
exports.SymmetricIcon = SvgSymmetricIcon;
|
|
2846
2887
|
exports.SymmetricOffsetIcon = SvgSymmetricOffsetIcon;
|
|
2888
|
+
exports.SystemHubIcon = SvgSystemHubIcon;
|
|
2847
2889
|
exports.SystemLibraryIcon = SvgSystemLibraryIcon;
|
|
2848
2890
|
exports.TacticIcon = TacticIcon;
|
|
2849
2891
|
exports.TagIcon = SvgTagIcon$1;
|
|
@@ -2883,16 +2925,21 @@ exports.TryAgainIcon = TryAgainIcon;
|
|
|
2883
2925
|
exports.TuneIcon = TuneIcon;
|
|
2884
2926
|
exports.TutorialOutlineIcon = TutorialOutlineIcon;
|
|
2885
2927
|
exports.TwitterIcon = TwitterIcon;
|
|
2928
|
+
exports.UafoIcon = SvgUafoIcon;
|
|
2886
2929
|
exports.UndoIcon = UndoIcon;
|
|
2887
2930
|
exports.UnionIcon = SvgUnionIcon;
|
|
2931
|
+
exports.UnlockIcon = SvgUnlockIcon;
|
|
2888
2932
|
exports.UploadIcon = UploadIcon;
|
|
2889
2933
|
exports.UserCaptureAltIcon = SvgUserCaptureIcon;
|
|
2890
2934
|
exports.UserCaptureIcon = UserCaptureIcon;
|
|
2935
|
+
exports.UserDoubleFillIcon = SvgUserDoubleFillIcon;
|
|
2891
2936
|
exports.UserDoubleIcon = UserDoubleIcon;
|
|
2892
2937
|
exports.UserGroupAltIcon = UserGroupAltIcon;
|
|
2893
2938
|
exports.UserGroupIcon = UserGroupIcon;
|
|
2894
2939
|
exports.UserOutlineIcon = UserOutlineIcon;
|
|
2895
2940
|
exports.UserPlusIcon = SvgUserPlusIcon;
|
|
2941
|
+
exports.UserRecognitionIcon = SvgUserRecognitionIcon;
|
|
2942
|
+
exports.UserSettingIcon = SvgUserSettingIcon;
|
|
2896
2943
|
exports.UserSmallIcon = SvgUserOutlineIcon;
|
|
2897
2944
|
exports.UserSwitchIcon = SvgUserSwitchIcon;
|
|
2898
2945
|
exports.VccIcon = SvgVccIcon;
|
|
@@ -2905,6 +2952,7 @@ exports.WalletIcon = SvgWalletIcon;
|
|
|
2905
2952
|
exports.WarningFillIcon = WarningFillIcon;
|
|
2906
2953
|
exports.WarningIcon = WarningIcon;
|
|
2907
2954
|
exports.WarningOutlineIcon = SvgWarningOutlineIcon;
|
|
2955
|
+
exports.WireNodeIcon = SvgWireNodeIcon;
|
|
2908
2956
|
exports.XYKeyInIcon = SvgXYKeyInIcon;
|
|
2909
2957
|
exports.ZeroOriginIcon = SvgZeroOriginIcon;
|
|
2910
2958
|
exports.ZoomInAltIcon = SvgZoomInAltIcon;
|