@ideeza/icons 2.1.4 → 2.1.6
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/v2/general/AudioTrackIcon.d.ts +7 -0
- package/dist/icons/v2/general/BillSecureIcon.d.ts +7 -0
- package/dist/icons/v2/general/CodeSlashIcon.d.ts +7 -0
- package/dist/icons/v2/general/CubeIcon.d.ts +7 -0
- package/dist/icons/v2/general/MetricsIcon.d.ts +7 -0
- package/dist/icons/v2/general/PcbIcon.d.ts +7 -0
- package/dist/icons/v2/general/ProfileCardIcon.d.ts +7 -0
- package/dist/icons/v2/general/RegisterIcon.d.ts +7 -0
- package/dist/icons/v2/general/index.d.ts +8 -0
- package/dist/index.cjs +24 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.esm.js +17 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgAudioTrackIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgAudioTrackIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgBillSecureIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgBillSecureIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgCodeSlashIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgCodeSlashIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgCubeIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgCubeIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgMetricsIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgMetricsIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgPcbIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgPcbIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgProfileCardIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgProfileCardIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgRegisterIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgRegisterIcon;
|
|
@@ -4,7 +4,9 @@ export { default as ArrowDownFillIcon } from "./ArrowDownFillIcon";
|
|
|
4
4
|
export { default as ArrowDownRightIcon } from "./ArrowDownRightIcon";
|
|
5
5
|
export { default as ArrowLeftThinIcon } from "./ArrowLeftThinIcon";
|
|
6
6
|
export { default as ArrowUpRightIcon } from "./ArrowUpRightIcon";
|
|
7
|
+
export { default as AudioTrackIcon } from "./AudioTrackIcon";
|
|
7
8
|
export { default as BalanceSheetIcon } from "./BalanceSheetIcon";
|
|
9
|
+
export { default as BillSecureIcon } from "./BillSecureIcon";
|
|
8
10
|
export { default as BoxCrossIcon } from "./BoxCroseIcon";
|
|
9
11
|
export { default as BoxMinusIcons } from "./BoxMinusIcon";
|
|
10
12
|
export { default as BlogIcon } from "./BlogIcon";
|
|
@@ -19,7 +21,9 @@ export { default as CheckCircleAltIcon } from "./CheckCircleAltIcon";
|
|
|
19
21
|
export { default as CheckCircleFillIcon } from "./CheckCircleFillIcon";
|
|
20
22
|
export { default as CheckListIcon } from "./CheckListIcon";
|
|
21
23
|
export { default as ClockProgressIcon } from "./ClockProgressIcon";
|
|
24
|
+
export { default as CodeSlashIcon } from "./CodeSlashIcon";
|
|
22
25
|
export { default as CoinStackIcon } from "./CoinStackIcon";
|
|
26
|
+
export { default as CubeIcon } from "./CubeIcon";
|
|
23
27
|
export { default as DashboardMenuIcon } from "./DashboardMenuIcon";
|
|
24
28
|
export { default as DbIcon } from "./DbIcon";
|
|
25
29
|
export { default as DimondIcon } from "./DimondIcon";
|
|
@@ -58,6 +62,7 @@ export { default as LogoutCurveIcon } from "./LogoutCurveIcon";
|
|
|
58
62
|
export { default as MailCheckIcon } from "./MailCheckIcon";
|
|
59
63
|
export { default as MemberTreeIcon } from "./MemberTreeIcon";
|
|
60
64
|
export { default as MessageIcon } from "./MessageIcon";
|
|
65
|
+
export { default as MetricsIcon } from "./MetricsIcon";
|
|
61
66
|
export { default as MoonHalfIcon } from "./MoonHalfIcon";
|
|
62
67
|
export { default as MultilineIcon } from "./MultilineIcon";
|
|
63
68
|
export { default as NewsFeedIcon } from "./NewsFeedIcon";
|
|
@@ -66,14 +71,17 @@ export { default as NoteIcon } from "./NoteIcon";
|
|
|
66
71
|
export { default as PartsIcon } from "./PartsIcon";
|
|
67
72
|
export { default as PawStationIcon } from "./PawStationIcon";
|
|
68
73
|
export { default as PayRollIcon } from "./PayRollIcon";
|
|
74
|
+
export { default as PcbIcon } from "./PcbIcon";
|
|
69
75
|
export { default as PenIcon } from "./PenIcon";
|
|
70
76
|
export { default as PlusThinIcon } from "./PlusThinIcon";
|
|
71
77
|
export { default as PrinterIcon } from "./PrinterIcon";
|
|
72
78
|
export { default as PrintQueueIcon } from "./PrintQueueIcon";
|
|
79
|
+
export { default as ProfileCardIcon } from "./ProfileCardIcon";
|
|
73
80
|
export { default as ProfitLossIcon } from "./ProfitLossIcon";
|
|
74
81
|
export { default as ProgressCircleIcon } from "./ProgressCircleIcon";
|
|
75
82
|
export { default as ReferAltIcon } from "./ReferAltIcon";
|
|
76
83
|
export { default as RefForwardIcon } from "./RefForwardIcon";
|
|
84
|
+
export { default as RegisterIcon } from "./RegisterIcon";
|
|
77
85
|
export { default as ReplyIcon } from "./ReplyIcon";
|
|
78
86
|
export { default as SandOfTimeAltIcon } from "./SandOfTimeAltIcon";
|
|
79
87
|
export { default as SelectVisiblePartAltIcon } from "./SelectVisiblePartAltIcon";
|
package/dist/index.cjs
CHANGED
|
@@ -2374,8 +2374,12 @@ const SvgArrowLeftThinIcon = ({ title, titleId, ...props }) => (jsxRuntimeExport
|
|
|
2374
2374
|
|
|
2375
2375
|
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" })] }));
|
|
2376
2376
|
|
|
2377
|
+
const SvgAudioTrackIcon = ({ 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("circle", { cx: 7.417, cy: 17.417, r: 2.917, stroke: "currentColor", strokeWidth: 1.5 }), jsxRuntimeExports.jsx("circle", { cx: 17, cy: 15.332, r: 2.5, stroke: "currentColor", strokeWidth: 1.5 }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M10.334 17.416v-9.25c0-.919 0-1.378.257-1.664.258-.285.752-.336 1.74-.438 3.082-.317 5.324-1.308 6.52-1.992.3-.171.45-.257.55-.2.1.059.1.226.1.56v10.9" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M10.334 10.332c4.888 0 8.148-1.944 9.166-2.5" })] }));
|
|
2378
|
+
|
|
2377
2379
|
const SvgBalanceSheetIcon = ({ 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: "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: 1.5, 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" })] }));
|
|
2378
2380
|
|
|
2381
|
+
const SvgBillSecureIcon = ({ 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: "M17.5 9.167v-.834c0-3.143 0-4.714-1.034-5.69s-2.697-.976-6.025-.976H9.56c-3.328 0-4.992 0-6.025.976S2.5 5.19 2.5 8.333v3.333c0 3.143 0 4.715 1.034 5.69 1.033.977 2.697.977 6.025.977H10M6.667 5.833h6.666M6.667 10h4.166" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M17.5 17.206v-3.04c0-1.19-1.12-2.5-2.5-2.5s-2.5 1.31-2.5 2.5v2.917c0 .65.61 1.25 1.364 1.25.753 0 1.363-.6 1.363-1.25v-2.28" })] }));
|
|
2382
|
+
|
|
2379
2383
|
const SvgBoxCroseIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 32 32", "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: "m24.03 9.95-9.668 5.62L4.32 9.913 14.47 4z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M14.362 15.57 14.326 28 4 22.36l.32-12.448zM14.373 15.57 14.336 28M20.375 17.95l7.62 7.817M27.995 17.95l-7.62 7.817" })] }));
|
|
2380
2384
|
|
|
2381
2385
|
const SvgBoxMinusIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 27 25", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsxs("g", { filter: "url(#box-minus-icon_svg__a)", children: [jsxRuntimeExports.jsx("path", { stroke: "currentColor", d: "M7.5 2.5h12A3.5 3.5 0 0 1 23 6v11a3.5 3.5 0 0 1-3.5 3.5h-12A3.5 3.5 0 0 1 4 17V6a3.5 3.5 0 0 1 3.5-3.5Z" }), jsxRuntimeExports.jsx("g", { clipPath: "url(#box-minus-icon_svg__b)", children: jsxRuntimeExports.jsx("rect", { width: 12, height: 2.5, x: 7.5, y: 10, fill: "currentColor", rx: 1.25 }) })] }), jsxRuntimeExports.jsxs("defs", { children: [jsxRuntimeExports.jsx("clipPath", { id: "box-minus-icon_svg__b", children: jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M7.5 10h12v3h-12z" }) }), jsxRuntimeExports.jsxs("filter", { id: "box-minus-icon_svg__a", width: 26, height: 25, x: 0.5, y: 0, colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse", children: [jsxRuntimeExports.jsx("feFlood", { floodOpacity: 0, result: "BackgroundImageFix" }), jsxRuntimeExports.jsx("feColorMatrix", { in: "SourceAlpha", result: "hardAlpha", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" }), jsxRuntimeExports.jsx("feOffset", { dy: 1 }), jsxRuntimeExports.jsx("feGaussianBlur", { stdDeviation: 1.5 }), jsxRuntimeExports.jsx("feColorMatrix", { values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0" }), jsxRuntimeExports.jsx("feBlend", { in2: "BackgroundImageFix", result: "effect1_dropShadow_9559_128452" }), jsxRuntimeExports.jsx("feBlend", { in: "SourceGraphic", in2: "effect1_dropShadow_9559_128452", result: "shape" })] })] })] }));
|
|
@@ -2404,8 +2408,12 @@ const SvgCheckListIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.js
|
|
|
2404
2408
|
|
|
2405
2409
|
const SvgClockProgressIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 32 32", "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.667, d: "m25.267 11.476 3.347-.204c-2.4-6.332-9.287-9.939-16.003-8.146-7.152 1.91-11.4 9.222-9.489 16.332 1.912 7.11 9.26 11.326 16.413 9.416a13.38 13.38 0 0 0 9.796-10.895" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2.667, d: "M16 10.667V16l2.667 2.667" })] }));
|
|
2406
2410
|
|
|
2411
|
+
const SvgCodeSlashIcon = ({ 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: "m17 8 1.84 1.85c.773.778 1.16 1.167 1.16 1.65s-.387.872-1.16 1.65L17 15M7 8 5.16 9.85C4.387 10.628 4 11.017 4 11.5s.387.872 1.16 1.65L7 15M14.5 4l-5 16" })] }));
|
|
2412
|
+
|
|
2407
2413
|
const SvgCoinStackIcon = ({ 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.53 8.98c3.91 0 7.08-1.343 7.08-3s-3.17-3-7.08-3-7.08 1.343-7.08 3 3.17 3 7.08 3" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M18.61 5.98c0 1.66-3.17 3-7.08 3s-7.08-1.34-7.08-3M18.61 8.99c0 1.66-3.17 3-7.08 3s-7.08-1.34-7.08-3M18.61 11.99c0 1.66-3.17 3-7.08 3s-7.08-1.34-7.08-3M18.61 14.99c0 1.66-3.17 3-7.08 3s-7.08-1.34-7.08-3M18.61 18c0 1.66-3.17 3-7.08 3s-7.08-1.34-7.08-3" })] }));
|
|
2408
2414
|
|
|
2415
|
+
const SvgCubeIcon = ({ 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", strokeMiterlimit: 10, strokeWidth: 2, d: "M20.569 14.68V9.32c0-1.293-.69-2.5-1.828-3.155L14.103 3.49a3.61 3.61 0 0 0-3.637 0L5.828 6.164A3.66 3.66 0 0 0 4 9.319v5.362c0 1.293.69 2.5 1.828 3.155l4.638 2.673a3.61 3.61 0 0 0 3.637 0l4.638-2.673a3.66 3.66 0 0 0 1.828-3.155ZM12.293 20.991v-9.19M12.293 11.802l7.517-4.363M12.294 11.802l-7.57-4.414" })] }));
|
|
2416
|
+
|
|
2409
2417
|
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" }) }) })] }));
|
|
2410
2418
|
|
|
2411
2419
|
const SvgDbIcon = ({ 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("ellipse", { cx: 15.5, cy: 11, stroke: "currentColor", strokeWidth: 1.5, rx: 6.5, ry: 2 }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeWidth: 1.5, d: "M22 15.5c0 1.105-2.91 2-6.5 2s-6.5-.895-6.5-2" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeWidth: 1.5, d: "M22 11v8.8c0 1.215-2.91 2.2-6.5 2.2S9 21.015 9 19.8V11" }), jsxRuntimeExports.jsx("ellipse", { cx: 8.5, cy: 4, stroke: "currentColor", strokeWidth: 1.5, rx: 6.5, ry: 2 }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M6 11c-1.892-.23-3.63-.825-4-2m4 7c-1.892-.23-3.63-.825-4-2" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M6 21c-1.892-.23-3.63-.826-4-2V4M15 6V4" })] }));
|
|
@@ -2482,6 +2490,8 @@ const SvgMemberTreeIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.j
|
|
|
2482
2490
|
|
|
2483
2491
|
const SvgMessageIcon = ({ 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.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" }), jsxRuntimeExports.jsx("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" }), jsxRuntimeExports.jsx("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" })] }));
|
|
2484
2492
|
|
|
2493
|
+
const SvgMetricsIcon = ({ 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: "M12 21.09a9.09 9.09 0 1 0 0-18.18 9.09 9.09 0 0 0 0 18.18" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M7.7 3.99v7.31M9.46 11.3H5.93v3.53h3.53z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M14.31 6.7V3.22M16.07 6.7h-3.53v3.53h3.53zM14.31 20.8v-3.63M12.54 17.17h3.53v-3.53h-3.53z" })] }));
|
|
2494
|
+
|
|
2485
2495
|
const SvgMoonHalfIcon = ({ 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.25, d: "M17.917 11.732a7.131 7.131 0 0 1-9.649-9.649 8.022 8.022 0 1 0 9.649 9.649" })] }));
|
|
2486
2496
|
|
|
2487
2497
|
const SvgMultilineIcon = ({ 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: "M3 20S6.712 5.217 6.528 5.734c-.184.518 4.643 9.39 4.643 9.39L21 4" })] }));
|
|
@@ -2498,6 +2508,8 @@ const SvgPawStationIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.j
|
|
|
2498
2508
|
|
|
2499
2509
|
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" })] }));
|
|
2500
2510
|
|
|
2511
|
+
const SvgPcbIcon = ({ 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", d: "M23.5.5v23H.5V.5z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "m14.72 8.6-3.84 1.42 2.92-5.41-3.4-1.57-3.43 8.82c-.14.32-.2.67-.07 1.02.23.65.95.98 1.59.75l4.67-1.69-5.93 9 9.42-9.53c1.33-1.33-.2-3.57-1.94-2.81zM2.91 17.12V6.23c0-1.84 1.49-3.33 3.33-3.33" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12.29 21.09h5.48c1.84 0 3.33-1.49 3.33-3.33V6.23c0-1.84-1.49-3.33-3.33-3.33h-.6" })] }));
|
|
2512
|
+
|
|
2501
2513
|
const SvgPenIcon = ({ 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: "M3.423 15.464C7.33 11.34 11.237 7.217 15.134 3.093L17.041 3l3.114 3.113v1.67C15.969 11.888 11.783 16 7.598 20.104c-1.536-.02-3.072-.03-4.598-.051.144-1.536.278-3.072.423-4.598zM17.99 9.917l-4.825-4.742" })] }));
|
|
2502
2514
|
|
|
2503
2515
|
const SvgPlusThinIcon = ({ 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.95 2.95v18M20.95 11.95h-18" })] }));
|
|
@@ -2506,6 +2518,8 @@ const SvgPrinterIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs
|
|
|
2506
2518
|
|
|
2507
2519
|
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" })] }));
|
|
2508
2520
|
|
|
2521
|
+
const SvgProfileCardIcon = ({ 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: "M11.667 7.5H15M11.667 10.417h2.5" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinejoin: "round", strokeWidth: 1.5, d: "M14.167 2.5H5.833a4.167 4.167 0 0 0-4.166 4.167v6.666A4.167 4.167 0 0 0 5.833 17.5h8.334a4.167 4.167 0 0 0 4.166-4.167V6.667A4.167 4.167 0 0 0 14.167 2.5Z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M4.167 13.333c1.006-2.15 4.76-2.292 5.833 0" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeWidth: 1.5, d: "M8.75 7.5a1.667 1.667 0 1 1-3.334 0 1.667 1.667 0 0 1 3.334 0Z" })] }));
|
|
2522
|
+
|
|
2509
2523
|
const SvgProfitLossIcon = ({ 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" })] }));
|
|
2510
2524
|
|
|
2511
2525
|
const SvgProgressCircleIcon = ({ 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: 2, d: "M10 2.5V5M10 15v2.5M17.5 10H15M5 10H2.5M15.303 4.697l-1.768 1.768M6.465 13.535l-1.768 1.768M15.303 15.303l-1.768-1.768M6.465 6.465 4.697 4.697" })] }));
|
|
@@ -2514,6 +2528,8 @@ const SvgReferIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("
|
|
|
2514
2528
|
|
|
2515
2529
|
const SvgRefForwardIcon = ({ 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: 1.167, d: "M6 4.583h4c.167 0 .261.054.312.104.051.051.105.146.105.313s-.054.262-.105.313-.145.104-.312.104H5.417v13.166h13.166V14c0-.167.053-.262.104-.312.051-.051.145-.105.313-.105.167 0 .261.054.312.104.051.051.105.146.105.313v4c0 .778-.64 1.417-1.417 1.417H6c-.778 0-1.417-.64-1.417-1.417V6c0-.778.639-1.417 1.417-1.417Z" }), jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M20 10c-.6 0-1-.4-1-1V5h-4c-.6 0-1-.4-1-1s.4-1 1-1h5c.6 0 1 .4 1 1v5c0 .6-.4 1-1 1" }), jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M13 12c-.3 0-.5-.1-.7-.3-.4-.4-.4-1 0-1.4l7-7c.4-.4 1-.4 1.4 0s.4 1 0 1.4l-7 7c-.2.2-.4.3-.7.3" })] }));
|
|
2516
2530
|
|
|
2531
|
+
const SvgRegisterIcon = ({ 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: "M16.176 3H6v18h10.176z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeMiterlimit: 10, strokeWidth: 2, d: "M13.516 5.396h-4.72v2.542h4.72zM13.516 10.413h-4.72v2.542h4.72zM13.516 15.86h-4.72V18.4h4.72zM16.176 3.744h2.614v7.453l-1.525.68 1.525.926v7.362h-2.614" })] }));
|
|
2532
|
+
|
|
2517
2533
|
const SvgReplyIcon = ({ 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: "M19 19v-4q0-1.25-.875-2.125A2.9 2.9 0 0 0 16 12H6.825l3.6 3.6L9 17l-6-6 6-6 1.425 1.4-3.6 3.6H16q2.075 0 3.538 1.463T21 15v4z" })] }));
|
|
2518
2534
|
|
|
2519
2535
|
const SvgSandOfTimeAltIcon = ({ 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", strokeWidth: 2, d: "M14.335 2.5h-8.67c-1.214 0-2.28.739-2.329 1.803-.06 1.339.985 2.228 2.084 3.062C6.94 8.52 7.7 9.097 7.78 9.828q.02.172 0 .344c-.08.73-.84 1.308-2.36 2.463-1.129.857-2.148 1.655-2.084 3.062.05 1.065 1.115 1.803 2.33 1.803h8.669c1.214 0 2.28-.738 2.329-1.803a2.72 2.72 0 0 0-1.051-2.277c-.338-.268-.689-.524-1.033-.785-1.52-1.155-2.28-1.732-2.36-2.463a1.6 1.6 0 0 1 0-.344c.08-.73.84-1.308 2.36-2.463 1.117-.848 2.148-1.671 2.084-3.062-.049-1.064-1.115-1.803-2.33-1.803Z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "M7.5 17.198c0-.368 0-.552.073-.713a1 1 0 0 1 .039-.075c.089-.152.24-.26.542-.476.838-.599 1.257-.898 1.734-.93a2 2 0 0 1 .224 0c.477.032.896.331 1.734.93.302.216.453.324.542.476q.021.037.039.075c.073.161.073.345.073.713v.302h-5z" })] }));
|
|
@@ -2628,6 +2644,7 @@ exports.ArrowUpDownIcon = ArrowUpDownIcon;
|
|
|
2628
2644
|
exports.ArrowUpRightIcon = SvgArrowUpRightIcon;
|
|
2629
2645
|
exports.ArrowUpwardIcon = ArrowUpwordIcon;
|
|
2630
2646
|
exports.AttachmentIcon = AttachmentIcon;
|
|
2647
|
+
exports.AudioTrackIcon = SvgAudioTrackIcon;
|
|
2631
2648
|
exports.AutoCompleteBadgeIcon = SvgAutoCompleteBadgeIcon;
|
|
2632
2649
|
exports.AutoRouteIcon = SvgAutoRouteIcon;
|
|
2633
2650
|
exports.AutoScaleSketchIcon = SvgAutoScaleSketchIcon;
|
|
@@ -2637,6 +2654,7 @@ exports.BagWithTimeIcon = BagWithTimeIcon;
|
|
|
2637
2654
|
exports.BalanceSheetIcon = SvgBalanceSheetIcon;
|
|
2638
2655
|
exports.BellIcon = SvgBellIcon;
|
|
2639
2656
|
exports.BezierCurveIcon = SvgBezierCurveIcon;
|
|
2657
|
+
exports.BillSecureIcon = SvgBillSecureIcon;
|
|
2640
2658
|
exports.BlockIcon = BlockIcon;
|
|
2641
2659
|
exports.BlogIcon = SvgBlogIcon;
|
|
2642
2660
|
exports.BlubFillIcon = BlubFillIcon;
|
|
@@ -2697,6 +2715,7 @@ exports.CloseThinIcon = SvgCloseThinIcon;
|
|
|
2697
2715
|
exports.CodeAltIcon = CodeAltIcon;
|
|
2698
2716
|
exports.CodeBlockIcon = SvgCodeBlockIcon;
|
|
2699
2717
|
exports.CodeIcon = CodeIcon;
|
|
2718
|
+
exports.CodeSlashIcon = SvgCodeSlashIcon;
|
|
2700
2719
|
exports.CoinDoubleIcon = CoinDoubleIcon;
|
|
2701
2720
|
exports.CoinStackIcon = SvgCoinStackIcon;
|
|
2702
2721
|
exports.CommentAddIcon = CommemtAddIcon;
|
|
@@ -2729,6 +2748,7 @@ exports.CreateInternalComponentIcon = SvgCreateInternalComponentIcon;
|
|
|
2729
2748
|
exports.CreatePartInPlaceIcon = SvgCreatePartInPlaceIcon;
|
|
2730
2749
|
exports.CreatesRectangleIcon = SvgCreatesRectangleIcon;
|
|
2731
2750
|
exports.CrossProbeIcon = SvgCrossProbeIcon;
|
|
2751
|
+
exports.CubeIcon = SvgCubeIcon;
|
|
2732
2752
|
exports.CurveIcon = SvgCurveIcon;
|
|
2733
2753
|
exports.CutAltIcon = SvgCutAltIcon;
|
|
2734
2754
|
exports.CutIcon = SvgCutIcon;
|
|
@@ -2905,6 +2925,7 @@ exports.MenuDotIcon = SvgMenuDotIcon;
|
|
|
2905
2925
|
exports.MenuDotOutlineIcon = MenuDotOutlineIcon;
|
|
2906
2926
|
exports.MenuLineIcon = SvgMenuLineIcon;
|
|
2907
2927
|
exports.MessageIcon = SvgMessageIcon;
|
|
2928
|
+
exports.MetricsIcon = SvgMetricsIcon;
|
|
2908
2929
|
exports.MicAltIcon = MicAltIcon;
|
|
2909
2930
|
exports.MicIcon = MicIcon;
|
|
2910
2931
|
exports.MilterIcon = SvgMilterIcon;
|
|
@@ -2961,6 +2982,7 @@ exports.PawStationIcon = SvgPawStationIcon;
|
|
|
2961
2982
|
exports.PayRollIcon = SvgPayRollIcon;
|
|
2962
2983
|
exports.PaypalIcon = PaypalIcon;
|
|
2963
2984
|
exports.PcIcon = SvgPcIcon;
|
|
2985
|
+
exports.PcbIcon = SvgPcbIcon;
|
|
2964
2986
|
exports.PenIcon = SvgPenIcon;
|
|
2965
2987
|
exports.PerpendicularIcon = SvgPerpendicularIcon;
|
|
2966
2988
|
exports.PersonBookIcon = PersonBookIcon;
|
|
@@ -2983,6 +3005,7 @@ exports.PortIcon = SvgPortIcon;
|
|
|
2983
3005
|
exports.PrintQueueIcon = SvgPrintQueueIcon;
|
|
2984
3006
|
exports.PrinterIcon = SvgPrinterIcon;
|
|
2985
3007
|
exports.ProductIcon = ProductIcon;
|
|
3008
|
+
exports.ProfileCardIcon = SvgProfileCardIcon;
|
|
2986
3009
|
exports.ProfitLossIcon = SvgProfitLossIcon;
|
|
2987
3010
|
exports.ProgressCircleIcon = SvgProgressCircleIcon;
|
|
2988
3011
|
exports.ProjectCreateIcon = ProjectCreateIcon;
|
|
@@ -3009,6 +3032,7 @@ exports.RedoIcon = RedoIcon;
|
|
|
3009
3032
|
exports.RefForwardIcon = SvgRefForwardIcon;
|
|
3010
3033
|
exports.ReferAltIcon = SvgReferIcon;
|
|
3011
3034
|
exports.ReferIcon = ReferIcon;
|
|
3035
|
+
exports.RegisterIcon = SvgRegisterIcon;
|
|
3012
3036
|
exports.RelationshipColoursIcon = SvgRelationshipColoursIcon;
|
|
3013
3037
|
exports.ReloadAltIcon = ReloadAltIcon;
|
|
3014
3038
|
exports.RemoveIcon = RemoveIcon;
|