@ideeza/icons 2.0.9 → 2.1.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.
- package/dist/icons/v2/general/CheckBoxOutlineIcon.d.ts +7 -0
- package/dist/icons/v2/general/DoubleCheckIcon.d.ts +7 -0
- package/dist/icons/v2/general/DoublePaperIcon.d.ts +7 -0
- package/dist/icons/v2/general/ExpandViewIcon.d.ts +7 -0
- package/dist/icons/v2/general/ExternalLinkIcon.d.ts +7 -0
- package/dist/icons/v2/general/FolderExportAltIcon.d.ts +7 -0
- package/dist/icons/v2/general/HappyFaceIcon.d.ts +7 -0
- package/dist/icons/v2/general/ImageAltIcon.d.ts +7 -0
- package/dist/icons/v2/general/PenIcon.d.ts +7 -0
- package/dist/icons/v2/general/SendUpAltIcon.d.ts +7 -0
- package/dist/icons/v2/general/TrashBoldIcon.d.ts +7 -0
- package/dist/icons/v2/general/UserBoldIcon.d.ts +7 -0
- package/dist/icons/v2/general/UserDoubleAltIcon.d.ts +7 -0
- package/dist/icons/v2/general/index.d.ts +13 -0
- package/dist/index.cjs +41 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.esm.js +29 -3
- 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 SvgCheckBoxOutlineIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgCheckBoxOutlineIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgDoubleCheckIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgDoubleCheckIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgDoublePaperIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgDoublePaperIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgExpandViewIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgExpandViewIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgExternalLinkIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgExternalLinkIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgFolderExportAltIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgFolderExportAltIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const HappyFaceIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default HappyFaceIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgImageAltIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgImageAltIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgPenIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgPenIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgSendUpAltIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgSendUpAltIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgTrashBoldIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgTrashBoldIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgUserBoldIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgUserBoldIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgUserDoubleAltIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgUserDoubleAltIcon;
|
|
@@ -9,19 +9,27 @@ export { default as BugAltIcon } from "./BugAltIcon";
|
|
|
9
9
|
export { default as CalendarOutlineIcon } from "./CalendarOutlineIcon";
|
|
10
10
|
export { default as CameraIcon } from "./CameraIcon";
|
|
11
11
|
export { default as CheckBoxFill } from "./CheckBoxFillIcon";
|
|
12
|
+
export { default as CheckBoxOutlineIcon } from "./CheckBoxOutlineIcon";
|
|
12
13
|
export { default as CheckCircleAltIcon } from "./CheckCircleAltIcon";
|
|
13
14
|
export { default as CheckCircleFillIcon } from "./CheckCircleFillIcon";
|
|
14
15
|
export { default as ClockProgressIcon } from "./ClockProgressIcon";
|
|
15
16
|
export { default as DashboardMenuIcon } from "./DashboardMenuIcon";
|
|
16
17
|
export { default as DimondIcon } from "./DimondIcon";
|
|
17
18
|
export { default as DollarCircleIcon } from "./DollarCircleIcon";
|
|
19
|
+
export { default as DoubleCheckIcon } from "./DoubleCheckIcon";
|
|
20
|
+
export { default as DoublePaperIcon } from "./DoublePaperIcon";
|
|
18
21
|
export { default as EmptyBoxIcon } from "./EmptyBoxIcon";
|
|
22
|
+
export { default as ExpandViewIcon } from "./ExpandViewIcon";
|
|
23
|
+
export { default as ExternalLinkIcon } from "./ExternalLinkIcon";
|
|
19
24
|
export { default as FasterIcon } from "./FasterIcon";
|
|
20
25
|
export { default as FileFolderIcon } from "./FileFolderIcon";
|
|
21
26
|
export { default as FlameIcon } from "./FlameIcon";
|
|
22
27
|
export { default as FolderAltIcon } from "./FolderAltIcon";
|
|
28
|
+
export { default as FolderExportAltIcon } from "./FolderExportAltIcon";
|
|
23
29
|
export { default as FormIcon } from "./FormIcon";
|
|
30
|
+
export { default as HappyFaceIcon } from "./HappyFaceIcon";
|
|
24
31
|
export { default as HomeIcon } from "./HomeIcon";
|
|
32
|
+
export { default as ImageAltIcon } from "./ImageAltIcon";
|
|
25
33
|
export { default as KeyboardCurveRightArrowIcon } from "./KeyboardCurveRightArrowIcon";
|
|
26
34
|
export { default as KeyboardCurveUptArrowIcon } from "./KeyboardCurveUpIcon";
|
|
27
35
|
export { default as LockAltIcon } from "./LockAltIcon";
|
|
@@ -35,9 +43,11 @@ export { default as NoteIcon } from "./NoteIcon";
|
|
|
35
43
|
export { default as PartsIcon } from "./PartsIcon";
|
|
36
44
|
export { default as PawStationIcon } from "./PawStationIcon";
|
|
37
45
|
export { default as PayRollIcon } from "./PayRollIcon";
|
|
46
|
+
export { default as PenIcon } from "./PenIcon";
|
|
38
47
|
export { default as PrinterIcon } from "./PrinterIcon";
|
|
39
48
|
export { default as PrintQueueIcon } from "./PrintQueueIcon";
|
|
40
49
|
export { default as ReferAltIcon } from "./ReferAltIcon";
|
|
50
|
+
export { default as SendUpAltIcon } from "./SendUpAltIcon";
|
|
41
51
|
export { default as SendUpIcon } from "./SendUpIcon";
|
|
42
52
|
export { default as SettingOutlineIcon } from "./SettingOutlineIcon";
|
|
43
53
|
export { default as ShareitIcon } from "./ShareitIcon";
|
|
@@ -51,10 +61,13 @@ export { default as TargetBoardIcon } from "./TargetBoardIcon";
|
|
|
51
61
|
export { default as TargetHalfIcon } from "./TargetHalfIcon";
|
|
52
62
|
export { default as TickFillIcon } from "./TickFillIcon";
|
|
53
63
|
export { default as TickIcon } from "./TickIcon";
|
|
64
|
+
export { default as TrashBoldIcon } from "./TrashBoldIcon";
|
|
54
65
|
export { default as UafoIcon } from "./UafoIcon";
|
|
55
66
|
export { default as UnlockIcon } from "./UnlockIcon";
|
|
56
67
|
export { default as UploadAltIcon } from "./UploadAltIcon";
|
|
68
|
+
export { default as UserBoldIcon } from "./UserBoldIcon";
|
|
57
69
|
export { default as UserCaptureAltIcon } from "./UserCaptureAltIcon";
|
|
70
|
+
export { default as UserDoubleAltIcon } from "./UserDoubleAltIcon";
|
|
58
71
|
export { default as UserDoubleFillIcon } from "./UserDoubleFillIcon";
|
|
59
72
|
export { default as UserPlusIcon } from "./UserPlusIcon";
|
|
60
73
|
export { default as UserRecognitionIcon } from "./UserRecognitionIcon";
|
package/dist/index.cjs
CHANGED
|
@@ -1758,7 +1758,7 @@ const HideIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg"
|
|
|
1758
1758
|
|
|
1759
1759
|
const SvgLinkAltIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 21 19", "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: "m8.604 15.416-1.87 1.7a3.4 3.4 0 0 1-4.806-.238 3.4 3.4 0 0 1 .239-4.805l4.805-4.349a3.4 3.4 0 0 1 4.806.24" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "m11.49 3.625 1.87-1.701a3.4 3.4 0 0 1 4.807.239 3.4 3.4 0 0 1-.24 4.805l-4.805 4.348a3.4 3.4 0 0 1-4.806-.239" })] }));
|
|
1760
1760
|
|
|
1761
|
-
const SvgMailIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0
|
|
1761
|
+
const SvgMailIcon = ({ 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: 2, d: "m2 6 6.913 3.917c2.549 1.444 3.625 1.444 6.174 0L22 6" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinejoin: "round", strokeWidth: 2, d: "M2.016 13.476c.065 3.065.098 4.598 1.229 5.733 1.131 1.136 2.705 1.175 5.854 1.254 1.94.05 3.862.05 5.802 0 3.149-.079 4.723-.118 5.854-1.254 1.131-1.135 1.164-2.668 1.23-5.733.02-.986.02-1.966 0-2.952-.066-3.065-.099-4.598-1.23-5.733-1.131-1.136-2.705-1.175-5.854-1.254a115 115 0 0 0-5.802 0c-3.149.079-4.723.118-5.854 1.254-1.131 1.135-1.164 2.668-1.23 5.733a69 69 0 0 0 0 2.952Z" })] }));
|
|
1762
1762
|
|
|
1763
1763
|
const SvgMailAltIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 17", "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: "m5.832 5.724 2.452 1.45c1.429.845 2 .845 3.43 0l2.451-1.45" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M1.678 9.87c.054 2.555.082 3.832 1.024 4.778.943.947 2.254.98 4.879 1.045 1.616.042 3.218.042 4.835 0 2.624-.066 3.935-.098 4.878-1.045.942-.946.97-2.223 1.025-4.777.017-.822.017-1.639 0-2.46-.055-2.555-.083-3.832-1.025-4.778-.943-.947-2.254-.979-4.878-1.045a96 96 0 0 0-4.835 0c-2.625.066-3.936.098-4.879 1.045-.942.946-.97 2.223-1.025 4.778a58 58 0 0 0 .001 2.46" })] }));
|
|
1764
1764
|
|
|
@@ -2384,6 +2384,8 @@ const SvgCameraIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs(
|
|
|
2384
2384
|
|
|
2385
2385
|
const SvgCheckBoxFillIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 21 21", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M.5 4.5a4 4 0 0 1 4-4h12a4 4 0 0 1 4 4v12a4 4 0 0 1-4 4h-12a4 4 0 0 1-4-4z" }), jsxRuntimeExports.jsx("g", { clipPath: "url(#check-box-fill-icon_svg__a)", filter: "url(#check-box-fill-icon_svg__b)", children: jsxRuntimeExports.jsx("path", { fill: "white", fillRule: "evenodd", d: "m8.438 12.222 5.391-5.392a1.125 1.125 0 0 1 1.592 1.59l-6.188 6.188c-.44.44-1.152.44-1.591 0L4.83 11.796a1.125 1.125 0 0 1 1.59-1.591z", clipRule: "evenodd" }) }), jsxRuntimeExports.jsxs("defs", { children: [jsxRuntimeExports.jsx("clipPath", { id: "check-box-fill-icon_svg__a", children: jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M4.5 4.5h12v12h-12z" }) }), jsxRuntimeExports.jsxs("filter", { id: "check-box-fill-icon_svg__b", width: 11.25, height: 8.938, x: 4.5, y: 6.5, 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: 0.5 }), jsxRuntimeExports.jsx("feComposite", { in2: "hardAlpha", operator: "out" }), jsxRuntimeExports.jsx("feColorMatrix", { values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0" }), jsxRuntimeExports.jsx("feBlend", { in2: "BackgroundImageFix", result: "effect1_dropShadow_9123_66660" }), jsxRuntimeExports.jsx("feBlend", { in: "SourceGraphic", in2: "effect1_dropShadow_9123_66660", result: "shape" })] })] })] }));
|
|
2386
2386
|
|
|
2387
|
+
const SvgCheckBoxOutlineIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 21 21", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", d: "M4.5 1h12A3.5 3.5 0 0 1 20 4.5v12a3.5 3.5 0 0 1-3.5 3.5h-12A3.5 3.5 0 0 1 1 16.5v-12A3.5 3.5 0 0 1 4.5 1Z" }), jsxRuntimeExports.jsx("g", { clipPath: "url(#check-box-outline-icon_svg__a)", filter: "url(#check-box-outline-icon_svg__b)", children: jsxRuntimeExports.jsx("path", { fill: "currentColor", fillRule: "evenodd", d: "m8.438 12.222 5.391-5.392a1.125 1.125 0 0 1 1.592 1.59l-6.188 6.188c-.44.44-1.152.44-1.591 0L4.83 11.796a1.125 1.125 0 0 1 1.59-1.591z", clipRule: "evenodd" }) }), jsxRuntimeExports.jsxs("defs", { children: [jsxRuntimeExports.jsx("clipPath", { id: "check-box-outline-icon_svg__a", children: jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M4.5 4.5h12v12h-12z" }) }), jsxRuntimeExports.jsxs("filter", { id: "check-box-outline-icon_svg__b", width: 11.25, height: 8.938, x: 4.5, y: 6.5, 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: 0.5 }), jsxRuntimeExports.jsx("feComposite", { in2: "hardAlpha", operator: "out" }), jsxRuntimeExports.jsx("feColorMatrix", { values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0" }), jsxRuntimeExports.jsx("feBlend", { in2: "BackgroundImageFix", result: "effect1_dropShadow_5003_80035" }), jsxRuntimeExports.jsx("feBlend", { in: "SourceGraphic", in2: "effect1_dropShadow_5003_80035", result: "shape" })] })] })] }));
|
|
2388
|
+
|
|
2387
2389
|
const SvgCheckCircleAltIcon = ({ 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", strokeWidth: 2, d: "M22 12c0-5.523-4.477-10-10-10S2 6.477 2 12s4.477 10 10 10 10-4.477 10-10Z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M7.836 12.62 10.552 15l5.596-6.008" })] }));
|
|
2388
2390
|
|
|
2389
2391
|
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" })] }));
|
|
@@ -2396,8 +2398,16 @@ const SvgDimondIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs(
|
|
|
2396
2398
|
|
|
2397
2399
|
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" })] }));
|
|
2398
2400
|
|
|
2401
|
+
const SvgDoubleCheckIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 25 25", "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 14.333 6.5 18l1.024-1.073M17 7l-6.063 6.352M8 14.333 11.5 18 22 7" })] }));
|
|
2402
|
+
|
|
2403
|
+
const SvgDoublePaperIcon = ({ 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(#double-paper-icon_svg__a)", children: [jsxRuntimeExports.jsx("path", { strokeLinejoin: "round", d: "m13.83 17.249-2.038.54c-1.885.499-2.828.748-3.567.34-.739-.41-.985-1.317-1.477-3.133l-1.219-4.492c-.492-1.815-.738-2.723-.305-3.442S6.6 6.093 8.485 5.594l3.334-.883c1.886-.499 2.829-.749 3.567-.34.74.41.985 1.317 1.478 3.132l1.223 4.51c.21.773.314 1.159.199 1.522m-4.456 3.714c.626-.166.631-.169 1.119-.587l2.286-1.962c.624-.535.936-.802 1.05-1.165m-4.455 3.714s.49-3.828 1.587-4.332c1.244-.573 2.869.618 2.869.618" }), jsxRuntimeExports.jsx("path", { d: "M14.167 4.167c-.054-.894-.203-1.457-.627-1.86-.65-.62-1.692-.622-3.777-.628l-3.685-.011c-2.085-.007-3.128-.01-3.773.605-.646.615-.643 1.607-.637 3.591l.015 4.911c.006 1.985.009 2.977.659 3.595s1.692.622 3.777.628l.567.002" })] }), jsxRuntimeExports.jsx("defs", { children: jsxRuntimeExports.jsx("clipPath", { id: "double-paper-icon_svg__a", children: jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M0 0h20v20H0z" }) }) })] }));
|
|
2404
|
+
|
|
2399
2405
|
const SvgEmptyBoxIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 21 21", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsxs("g", { clipPath: "url(#empty-box-icon_svg__a)", children: [jsxRuntimeExports.jsx("path", { d: "M.5 4.5a4 4 0 0 1 4-4h12a4 4 0 0 1 4 4v12a4 4 0 0 1-4 4h-12a4 4 0 0 1-4-4z" }), jsxRuntimeExports.jsx("path", { d: "M4.5 1h12A3.5 3.5 0 0 1 20 4.5v12a3.5 3.5 0 0 1-3.5 3.5h-12A3.5 3.5 0 0 1 1 16.5v-12A3.5 3.5 0 0 1 4.5 1" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", d: "M4.5 1h12A3.5 3.5 0 0 1 20 4.5v12a3.5 3.5 0 0 1-3.5 3.5h-12A3.5 3.5 0 0 1 1 16.5v-12A3.5 3.5 0 0 1 4.5 1Z" })] }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", d: "M4.5 1h12A3.5 3.5 0 0 1 20 4.5v12a3.5 3.5 0 0 1-3.5 3.5h-12A3.5 3.5 0 0 1 1 16.5v-12A3.5 3.5 0 0 1 4.5 1Z" }), jsxRuntimeExports.jsx("defs", { children: jsxRuntimeExports.jsx("clipPath", { id: "empty-box-icon_svg__a", children: jsxRuntimeExports.jsx("path", { d: "M.5 4.5a4 4 0 0 1 4-4h12a4 4 0 0 1 4 4v12a4 4 0 0 1-4 4h-12a4 4 0 0 1-4-4z" }) }) })] }));
|
|
2400
2406
|
|
|
2407
|
+
const SvgExpandViewIcon = ({ 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: "M2.425 5.8V2.425H5.8M2.425 2.425l4.042 4.041M5.8 17.575H2.425V14.2M2.425 17.575 6.5 13.5M17.575 14.2v3.375H14.2M17.575 17.575l-4.042-4.042M14.2 2.425h3.375V5.8M17.575 2.425l-4.042 4.041M12.309 6.025H7.692c-.92 0-1.667.746-1.667 1.667v4.616c0 .92.746 1.667 1.667 1.667h4.617c.92 0 1.666-.746 1.666-1.667V7.692c0-.92-.746-1.667-1.666-1.667" })] }));
|
|
2408
|
+
|
|
2409
|
+
const SvgExternalLinkIcon = ({ 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: "M2.517 13.317h9.133c.917 0 1.667-.75 1.667-1.667V2.517" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M17.483 2.517V14.15a3.33 3.33 0 0 1-3.333 3.333H2.517M2.517 2.517l10.308 10.308" })] }));
|
|
2410
|
+
|
|
2401
2411
|
const SvgFasterIcon = ({ 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: "M20.89 3.813 10.958 16.84h4.36l-4.426 11.333 10.213-14.066-4.587-.08zM11.04 4.867l.986 2.2" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "m6.945 7.84 1.787 1.613M4.406 12.226l2.294.747M3.875 17.267l2.4-.254M5.445 22.08l2.08-1.2M18.538 27.907l-.507-2.347M23.148 25.853l-1.414-1.946M26.54 22.08l-2.08-1.2M28.11 17.267l-2.4-.254M27.582 12.226l-2.293.747M25.052 7.84l-1.786 1.613" })] }));
|
|
2402
2412
|
|
|
2403
2413
|
const FileFolderIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 41 47", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsxs("g", { filter: "url(#file-folder-icon_svg__a)", children: [jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M4.75 6.5a4 4 0 0 1 4-4h16l12 12v24a4 4 0 0 1-4 4h-24a4 4 0 0 1-4-4z" }), jsxRuntimeExports.jsx("path", { fill: "white", d: "m24.75 2.5 12 12h-8a4 4 0 0 1-4-4z", opacity: 0.3 }), jsxRuntimeExports.jsx("g", { clipPath: "url(#file-folder-icon_svg__b)", children: jsxRuntimeExports.jsx("path", { stroke: "white", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "m21.417 23.167-.744-1.488c-.214-.428-.321-.642-.48-.798a1.3 1.3 0 0 0-.499-.308c-.211-.073-.45-.073-.93-.073h-2.547c-.747 0-1.12 0-1.406.145-.25.128-.454.332-.582.583-.146.285-.146.659-.146 1.405v.534m0 0h10.134c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.427.218.988.218 2.108V29.3c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218h-6.934c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108z" }) })] }), jsxRuntimeExports.jsxs("defs", { children: [jsxRuntimeExports.jsx("clipPath", { id: "file-folder-icon_svg__b", children: jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M12.75 18.5h16v16h-16z" }) }), jsxRuntimeExports.jsxs("filter", { id: "file-folder-icon_svg__a", width: 46, height: 46, x: -2.25, y: 0.5, 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("feMorphology", { in: "SourceAlpha", radius: 1, result: "effect1_dropShadow_35145_15368" }), jsxRuntimeExports.jsx("feOffset", { dy: 1 }), jsxRuntimeExports.jsx("feGaussianBlur", { stdDeviation: 1 }), jsxRuntimeExports.jsx("feColorMatrix", { values: "0 0 0 0 0.0392157 0 0 0 0 0.0496732 0 0 0 0 0.0705882 0 0 0 0.1 0" }), jsxRuntimeExports.jsx("feBlend", { in2: "BackgroundImageFix", result: "effect1_dropShadow_35145_15368" }), 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.0392157 0 0 0 0 0.0496732 0 0 0 0 0.0705882 0 0 0 0.1 0" }), jsxRuntimeExports.jsx("feBlend", { in2: "effect1_dropShadow_35145_15368", result: "effect2_dropShadow_35145_15368" }), jsxRuntimeExports.jsx("feBlend", { in: "SourceGraphic", in2: "effect2_dropShadow_35145_15368", result: "shape" })] })] })] }));
|
|
@@ -2406,10 +2416,16 @@ const SvgFlameIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("
|
|
|
2406
2416
|
|
|
2407
2417
|
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" })] }));
|
|
2408
2418
|
|
|
2409
|
-
const
|
|
2419
|
+
const SvgFolderExportAltIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 25 25", "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: "M19.5 21.5c.607-.59 3-2.16 3-3s-2.393-2.41-3-3m2 3h-7" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "M12.5 21.5c-4.714 0-7.071 0-8.536-1.465C2.5 18.572 2.5 16.214 2.5 11.5V8.444c0-1.816 0-2.724.38-3.406A3 3 0 0 1 4.038 3.88c.682-.38 1.59-.38 3.406-.38 1.164 0 1.746 0 2.255.191 1.163.436 1.643 1.493 2.168 2.542L12.5 7.5m-4 0h8.75c2.107 0 3.16 0 3.917.506a3 3 0 0 1 .827.827c.486.726.505 1.726.506 3.667v1" })] }));
|
|
2420
|
+
|
|
2421
|
+
const SvgFormIcon = ({ 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.5 9.368c0-3.473 0-5.21 1.025-6.289S7.2 2 10.5 2h3c3.3 0 4.95 0 5.975 1.08C20.5 4.157 20.5 5.894 20.5 9.367v5.264c0 3.473 0 5.21-1.025 6.289S16.8 22 13.5 22h-3c-3.3 0-4.95 0-5.975-1.08C3.5 19.843 3.5 18.106 3.5 14.633z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "m8 2 .082.493c.2 1.197.3 1.796.72 2.152C9.22 5 9.827 5 11.041 5h1.917c1.213 0 1.82 0 2.24-.355.42-.356.52-.955.719-2.152L16 2" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "M8 16h4m-4-5h8" })] }));
|
|
2422
|
+
|
|
2423
|
+
const HappyFaceIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 28 28", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("circle", { cx: 14.001, cy: 14, r: 11.667, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5 }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M9.334 17.5a5.82 5.82 0 0 0 4.667 2.333 5.82 5.82 0 0 0 4.666-2.333" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M9.344 10.5h-.01m9.333 0h-.01" })] }));
|
|
2410
2424
|
|
|
2411
2425
|
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" })] }));
|
|
2412
2426
|
|
|
2427
|
+
const SvgImageAltIcon = ({ 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: 2, clipPath: "url(#image-alt-icon_svg__a)", children: [jsxRuntimeExports.jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M17.5 10v.417c0 3.732 0 5.598-1.16 6.757-1.159 1.16-3.025 1.16-6.757 1.16s-5.598 0-6.757-1.16c-1.16-1.16-1.16-3.025-1.16-6.757s0-5.598 1.16-6.758C3.986 2.5 5.851 2.5 9.583 2.5H10" }), jsxRuntimeExports.jsx("path", { d: "M18.333 4.583a2.917 2.917 0 1 1-5.833 0 2.917 2.917 0 0 1 5.833 0Z" }), jsxRuntimeExports.jsx("path", { strokeLinejoin: "round", d: "M17.5 11.667h-4.105c-.701 0-1.253.586-1.562 1.206-.336.673-1.009 1.293-2.25 1.293-1.24 0-1.913-.62-2.25-1.293-.309-.62-.86-1.207-1.562-1.207H1.667" })] }), jsxRuntimeExports.jsx("defs", { children: jsxRuntimeExports.jsx("clipPath", { id: "image-alt-icon_svg__a", children: jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M0 0h20v20H0z" }) }) })] }));
|
|
2428
|
+
|
|
2413
2429
|
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" })] }));
|
|
2414
2430
|
|
|
2415
2431
|
const KeyboardCurveUpIcon = ({ 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.737 17.737a8712 8712 0 0 0-6.833-7.196 3 3 0 0 0-4.34-.005 5316 5316 0 0 1-6.827 7.13" })] }));
|
|
@@ -2436,12 +2452,16 @@ const SvgPawStationIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.j
|
|
|
2436
2452
|
|
|
2437
2453
|
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" })] }));
|
|
2438
2454
|
|
|
2455
|
+
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" })] }));
|
|
2456
|
+
|
|
2439
2457
|
const SvgPrinterIcon = ({ 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", strokeWidth: 1.5, d: "M7.354 18c-2.123 0-3.185 0-3.94-.453a3.04 3.04 0 0 1-1.15-1.223c-.392-.77-.287-1.787-.075-3.822.176-1.698.264-2.547.698-3.171.285-.41.67-.745 1.121-.977C4.695 8 5.582 8 7.354 8h9.292c1.772 0 2.659 0 3.346.354.451.232.836.567 1.121.977.434.624.522 1.473.698 3.172.212 2.034.317 3.052-.076 3.821a3.04 3.04 0 0 1-1.148 1.223C19.83 18 18.769 18 16.646 18" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinejoin: "round", strokeWidth: 1.5, d: "M17 8V6c0-1.886 0-2.828-.586-3.414S14.886 2 13 2h-2c-1.886 0-2.828 0-3.414.586S7 4.114 7 6v2M13.989 16H10.01c-.685 0-1.028 0-1.32.109a1.87 1.87 0 0 0-.945.8c-.168.281-.251.642-.417 1.363-.26 1.128-.39 1.691-.301 2.143.117.602.484 1.112.995 1.382.382.203.918.203 1.988.203h3.978c1.07 0 1.606 0 1.988-.203.51-.27.878-.78.995-1.382.089-.452-.041-1.015-.3-2.143-.167-.72-.25-1.082-.418-1.362a1.87 1.87 0 0 0-.946-.801C15.017 16 14.674 16 13.988 16Z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M18 12h.009" })] }));
|
|
2440
2458
|
|
|
2441
2459
|
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" })] }));
|
|
2442
2460
|
|
|
2443
2461
|
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" })] }));
|
|
2444
2462
|
|
|
2463
|
+
const SvgSendUpAltIcon = ({ 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.015 10.81C2.497 7.515 15.693.513 19.32 3.904c3.708 3.462-2.847 17.466-5.957 17.089-1.484-.185-2.328-3.673-2.829-7.257-3.61-.457-7.265-1.283-7.529-2.926zM13.259 10.186l-3.101 3.629" })] }));
|
|
2464
|
+
|
|
2445
2465
|
const SvgSendUpIcon = ({ 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, d: "M4.02 14.413C3.329 10.02 20.923.684 25.76 5.206c4.944 4.615-3.795 23.288-7.942 22.784-1.98-.246-3.104-4.896-3.772-9.676-4.814-.61-9.687-1.71-10.039-3.9zM17.682 13.581l-4.135 4.838" })] }));
|
|
2446
2466
|
|
|
2447
2467
|
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" })] }));
|
|
@@ -2468,14 +2488,20 @@ const SvgTagIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("sv
|
|
|
2468
2488
|
|
|
2469
2489
|
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" })] }));
|
|
2470
2490
|
|
|
2491
|
+
const SvgTrashBoldIcon = ({ 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: "m18.85 6.15-.558 9.023c-.142 2.305-.213 3.457-.791 4.286a3.6 3.6 0 0 1-1.08 1.015c-.863.526-2.018.526-4.327.526-2.313 0-3.47 0-4.333-.527a3.6 3.6 0 0 1-1.08-1.017c-.578-.83-.647-1.984-.787-4.292L5.35 6.15M4 6.15h16.2m-4.45 0-.614-1.267c-.408-.842-.612-1.263-.964-1.526a2 2 0 0 0-.248-.155C13.534 3 13.067 3 12.131 3c-.96 0-1.439 0-1.835.21a2 2 0 0 0-.25.162c-.357.273-.555.71-.953 1.582L8.548 6.15M9.85 16.05v-5.4M14.35 16.05v-5.4" })] }));
|
|
2492
|
+
|
|
2471
2493
|
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" })] }));
|
|
2472
2494
|
|
|
2473
2495
|
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" })] }));
|
|
2474
2496
|
|
|
2475
2497
|
const SvgUploadAltIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 26 26", "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: "M13 3.391v12.492M13 3.39l4.333 3.844M13 3.39 8.666 7.235M4.333 13v7.687c0 .51.228.999.635 1.359.406.36.957.563 1.532.563h13c.574 0 1.125-.203 1.532-.563.406-.36.634-.85.634-1.359V13" })] }));
|
|
2476
2498
|
|
|
2499
|
+
const SvgUserBoldIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 17 17", "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: "M8.519 8.043a2.942 2.942 0 1 0 0-5.883 2.942 2.942 0 0 0 0 5.883" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.333, d: "M3.716 13.692c-.526-.423-.65-1.175-.19-1.67.847-.909 2.42-2.16 4.714-2.26 2.497-.116 4.272 1.205 5.204 2.137.468.468.389 1.208-.096 1.66l-.978.91c-.246.23-.571.357-.908.357H5.597c-.304 0-.6-.104-.836-.294z" })] }));
|
|
2500
|
+
|
|
2477
2501
|
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" })] }));
|
|
2478
2502
|
|
|
2503
|
+
const SvgUserDoubleAltIcon = ({ 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", strokeWidth: 2, d: "M13 7a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15 11a4 4 0 0 0 0-8" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinejoin: "round", strokeWidth: 2, d: "M11 14H7a5 5 0 0 0-5 5 2 2 0 0 0 2 2h10a2 2 0 0 0 2-2 5 5 0 0 0-5-5Z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M17 14a5 5 0 0 1 5 5 2 2 0 0 1-2 2h-1.5" })] }));
|
|
2504
|
+
|
|
2479
2505
|
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" })] }));
|
|
2480
2506
|
|
|
2481
2507
|
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" })] }));
|
|
@@ -2571,6 +2597,7 @@ exports.CenterOutlineIcon = CenterOutlineIcon;
|
|
|
2571
2597
|
exports.ChatBubbleIcon = ChatBubbleIcon;
|
|
2572
2598
|
exports.CheckBoxCheckedIcon = CheckBoxCheckedIcon;
|
|
2573
2599
|
exports.CheckBoxFill = SvgCheckBoxFillIcon;
|
|
2600
|
+
exports.CheckBoxOutlineIcon = SvgCheckBoxOutlineIcon;
|
|
2574
2601
|
exports.CheckBoxUncheckedIcon = CheckBoxUncheckedIcon;
|
|
2575
2602
|
exports.CheckCircleAltIcon = SvgCheckCircleAltIcon;
|
|
2576
2603
|
exports.CheckCircleFillIcon = SvgCheckCircleFillIcon;
|
|
@@ -2656,6 +2683,8 @@ exports.DoNotDistrubIcon = DoNotDistrubIcon;
|
|
|
2656
2683
|
exports.DollarBagIcon = DollarBagIcon;
|
|
2657
2684
|
exports.DollarCircleIcon = SvgDollarCircleIcon;
|
|
2658
2685
|
exports.DoneAllIcon = DoneAllIcon;
|
|
2686
|
+
exports.DoubleCheckIcon = SvgDoubleCheckIcon;
|
|
2687
|
+
exports.DoublePaperIcon = SvgDoublePaperIcon;
|
|
2659
2688
|
exports.DoublePlayIcon = SvgDoublePlayIcon;
|
|
2660
2689
|
exports.DoubleSettingIcon = DoubleSettingIcon;
|
|
2661
2690
|
exports.DownTipIcon = DownTipIcon;
|
|
@@ -2679,7 +2708,9 @@ exports.EqualIcon = SvgEqualIcon;
|
|
|
2679
2708
|
exports.EraserIcon = EraserIcon;
|
|
2680
2709
|
exports.ErcIcon = SvgErcIcon;
|
|
2681
2710
|
exports.ErrorIcon = SvgErrorIcon;
|
|
2711
|
+
exports.ExpandViewIcon = SvgExpandViewIcon;
|
|
2682
2712
|
exports.ExtendToNextIcon = SvgExtendToNextIcon;
|
|
2713
|
+
exports.ExternalLinkIcon = SvgExternalLinkIcon;
|
|
2683
2714
|
exports.ExtrudeAltIcon = SvgExtrudeAltIcon;
|
|
2684
2715
|
exports.ExtrudeIcon = SvgExtrudeIcon;
|
|
2685
2716
|
exports.EyeIcon = EyeIcon;
|
|
@@ -2704,6 +2735,7 @@ exports.FlameIcon = SvgFlameIcon;
|
|
|
2704
2735
|
exports.FlipHorizontalIcon = FlipHorizontalIcon;
|
|
2705
2736
|
exports.FlipVerticalIcon = FlipVerticalIcon;
|
|
2706
2737
|
exports.FolderAltIcon = SvgFolderIcon;
|
|
2738
|
+
exports.FolderExportAltIcon = SvgFolderExportAltIcon;
|
|
2707
2739
|
exports.FolderExportIcon = SvgFolderExportIcon;
|
|
2708
2740
|
exports.FolderIcon = SvgFolderIcon$1;
|
|
2709
2741
|
exports.FolderOutlineIcon = FolderOutlineIcon;
|
|
@@ -2723,6 +2755,7 @@ exports.GridCompactIcon = GridCompactIcon;
|
|
|
2723
2755
|
exports.GridOffIcon = GridOffIcon;
|
|
2724
2756
|
exports.GridOptionsIcon = SvgGridOptionsIcon;
|
|
2725
2757
|
exports.GussetPlateIcon = SvgGussetPlateIcon;
|
|
2758
|
+
exports.HappyFaceIcon = HappyFaceIcon;
|
|
2726
2759
|
exports.HeartCheckOutlineIcon = HeartCheckOutlineIcon;
|
|
2727
2760
|
exports.HeartFillIcon = HeartFillIcon;
|
|
2728
2761
|
exports.HeartOutline = HeartOutline;
|
|
@@ -2735,6 +2768,7 @@ exports.HomeIcon = SvgHomeIcon;
|
|
|
2735
2768
|
exports.HumbergerIcon = SvgHumbergurIcon;
|
|
2736
2769
|
exports.IcIcon = IcIcon;
|
|
2737
2770
|
exports.IdeezaIcon = IdeezaIcon;
|
|
2771
|
+
exports.ImageAltIcon = SvgImageAltIcon;
|
|
2738
2772
|
exports.ImageIcon = SvgImageIcon;
|
|
2739
2773
|
exports.InfoIcon = SvgInfoIcon;
|
|
2740
2774
|
exports.InsertComponentFrom3DfinditIcon = SvgInsertComponentFrom3DfinditIcon;
|
|
@@ -2838,6 +2872,7 @@ exports.PawStationIcon = SvgPawStationIcon;
|
|
|
2838
2872
|
exports.PayRollIcon = SvgPayRollIcon;
|
|
2839
2873
|
exports.PaypalIcon = PaypalIcon;
|
|
2840
2874
|
exports.PcIcon = SvgPcIcon;
|
|
2875
|
+
exports.PenIcon = SvgPenIcon;
|
|
2841
2876
|
exports.PerpendicularIcon = SvgPerpendicularIcon;
|
|
2842
2877
|
exports.PersonBookIcon = PersonBookIcon;
|
|
2843
2878
|
exports.PersonRemoveIcon = PersonRemoveIcon;
|
|
@@ -2919,6 +2954,7 @@ exports.SelectLasoIcon = SelectLasoIcon;
|
|
|
2919
2954
|
exports.SelectVisiblePartIcon = SelectVisiblePartIcon;
|
|
2920
2955
|
exports.SendAltIcon = SendAltIcon;
|
|
2921
2956
|
exports.SendIcon = SendIcon;
|
|
2957
|
+
exports.SendUpAltIcon = SvgSendUpAltIcon;
|
|
2922
2958
|
exports.SendUpIcon = SvgSendUpIcon;
|
|
2923
2959
|
exports.SettingIcon = SettingIcon;
|
|
2924
2960
|
exports.SettingOutlineIcon = SvgSettingOutlineIcon;
|
|
@@ -2987,6 +3023,7 @@ exports.TopIcon = SvgTopIcon;
|
|
|
2987
3023
|
exports.TorusIcon = SvgTorusIcon;
|
|
2988
3024
|
exports.TrandingUpIcon = TrandingUpIcon;
|
|
2989
3025
|
exports.TrashAltIcon = TrashAltIcon;
|
|
3026
|
+
exports.TrashBoldIcon = SvgTrashBoldIcon;
|
|
2990
3027
|
exports.TrashIcon = TrashIcon;
|
|
2991
3028
|
exports.TrashOutlineIcon = SvgTrashOutlineIcon;
|
|
2992
3029
|
exports.TriLineArrowIcon = SvgTriLineArrowIcon;
|
|
@@ -3004,8 +3041,10 @@ exports.UnionIcon = SvgUnionIcon;
|
|
|
3004
3041
|
exports.UnlockIcon = SvgUnlockIcon;
|
|
3005
3042
|
exports.UploadAltIcon = SvgUploadAltIcon;
|
|
3006
3043
|
exports.UploadIcon = UploadIcon;
|
|
3044
|
+
exports.UserBoldIcon = SvgUserBoldIcon;
|
|
3007
3045
|
exports.UserCaptureAltIcon = SvgUserCaptureIcon;
|
|
3008
3046
|
exports.UserCaptureIcon = UserCaptureIcon;
|
|
3047
|
+
exports.UserDoubleAltIcon = SvgUserDoubleAltIcon;
|
|
3009
3048
|
exports.UserDoubleFillIcon = SvgUserDoubleFillIcon;
|
|
3010
3049
|
exports.UserDoubleIcon = UserDoubleIcon;
|
|
3011
3050
|
exports.UserGroupAltIcon = UserGroupAltIcon;
|