@ideeza/icons 2.1.0 → 2.1.2
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/ArrowDownFillIcon.d.ts +7 -0
- 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/ForwordAltIcon.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/PlusThinIcon.d.ts +7 -0
- package/dist/icons/v2/general/ReplyIcon.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 +16 -0
- package/dist/index.cjs +50 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.esm.js +35 -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 SvgArrowDownFillIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgArrowDownFillIcon;
|
|
@@ -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 SvgForwordAltIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgForwordAltIcon;
|
|
@@ -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 SvgPlusThinIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgPlusThinIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgReplyIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgReplyIcon;
|
|
@@ -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;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { default as ArrowDownFillIcon } from "./ArrowDownFillIcon";
|
|
1
2
|
export { default as ArrowDownRightIcon } from "./ArrowDownRightIcon";
|
|
2
3
|
export { default as ArrowLeftThinIcon } from "./ArrowLeftThinIcon";
|
|
3
4
|
export { default as ArrowUpRightIcon } from "./ArrowUpRightIcon";
|
|
@@ -9,20 +10,28 @@ export { default as BugAltIcon } from "./BugAltIcon";
|
|
|
9
10
|
export { default as CalendarOutlineIcon } from "./CalendarOutlineIcon";
|
|
10
11
|
export { default as CameraIcon } from "./CameraIcon";
|
|
11
12
|
export { default as CheckBoxFill } from "./CheckBoxFillIcon";
|
|
13
|
+
export { default as CheckBoxOutlineIcon } from "./CheckBoxOutlineIcon";
|
|
12
14
|
export { default as CheckCircleAltIcon } from "./CheckCircleAltIcon";
|
|
13
15
|
export { default as CheckCircleFillIcon } from "./CheckCircleFillIcon";
|
|
14
16
|
export { default as ClockProgressIcon } from "./ClockProgressIcon";
|
|
15
17
|
export { default as DashboardMenuIcon } from "./DashboardMenuIcon";
|
|
16
18
|
export { default as DimondIcon } from "./DimondIcon";
|
|
17
19
|
export { default as DollarCircleIcon } from "./DollarCircleIcon";
|
|
20
|
+
export { default as DoubleCheckIcon } from "./DoubleCheckIcon";
|
|
21
|
+
export { default as DoublePaperIcon } from "./DoublePaperIcon";
|
|
18
22
|
export { default as EmptyBoxIcon } from "./EmptyBoxIcon";
|
|
23
|
+
export { default as ExpandViewIcon } from "./ExpandViewIcon";
|
|
24
|
+
export { default as ExternalLinkIcon } from "./ExternalLinkIcon";
|
|
19
25
|
export { default as FasterIcon } from "./FasterIcon";
|
|
20
26
|
export { default as FileFolderIcon } from "./FileFolderIcon";
|
|
21
27
|
export { default as FlameIcon } from "./FlameIcon";
|
|
22
28
|
export { default as FolderAltIcon } from "./FolderAltIcon";
|
|
29
|
+
export { default as FolderExportAltIcon } from "./FolderExportAltIcon";
|
|
23
30
|
export { default as FormIcon } from "./FormIcon";
|
|
31
|
+
export { default as ForwardAltIcon } from "./ForwordAltIcon";
|
|
24
32
|
export { default as HappyFaceIcon } from "./HappyFaceIcon";
|
|
25
33
|
export { default as HomeIcon } from "./HomeIcon";
|
|
34
|
+
export { default as ImageAltIcon } from "./ImageAltIcon";
|
|
26
35
|
export { default as KeyboardCurveRightArrowIcon } from "./KeyboardCurveRightArrowIcon";
|
|
27
36
|
export { default as KeyboardCurveUptArrowIcon } from "./KeyboardCurveUpIcon";
|
|
28
37
|
export { default as LockAltIcon } from "./LockAltIcon";
|
|
@@ -36,9 +45,13 @@ export { default as NoteIcon } from "./NoteIcon";
|
|
|
36
45
|
export { default as PartsIcon } from "./PartsIcon";
|
|
37
46
|
export { default as PawStationIcon } from "./PawStationIcon";
|
|
38
47
|
export { default as PayRollIcon } from "./PayRollIcon";
|
|
48
|
+
export { default as PenIcon } from "./PenIcon";
|
|
49
|
+
export { default as PlusThinIcon } from "./PlusThinIcon";
|
|
39
50
|
export { default as PrinterIcon } from "./PrinterIcon";
|
|
40
51
|
export { default as PrintQueueIcon } from "./PrintQueueIcon";
|
|
41
52
|
export { default as ReferAltIcon } from "./ReferAltIcon";
|
|
53
|
+
export { default as ReplyIcon } from "./ReplyIcon";
|
|
54
|
+
export { default as SendUpAltIcon } from "./SendUpAltIcon";
|
|
42
55
|
export { default as SendUpIcon } from "./SendUpIcon";
|
|
43
56
|
export { default as SettingOutlineIcon } from "./SettingOutlineIcon";
|
|
44
57
|
export { default as ShareitIcon } from "./ShareitIcon";
|
|
@@ -52,10 +65,13 @@ export { default as TargetBoardIcon } from "./TargetBoardIcon";
|
|
|
52
65
|
export { default as TargetHalfIcon } from "./TargetHalfIcon";
|
|
53
66
|
export { default as TickFillIcon } from "./TickFillIcon";
|
|
54
67
|
export { default as TickIcon } from "./TickIcon";
|
|
68
|
+
export { default as TrashBoldIcon } from "./TrashBoldIcon";
|
|
55
69
|
export { default as UafoIcon } from "./UafoIcon";
|
|
56
70
|
export { default as UnlockIcon } from "./UnlockIcon";
|
|
57
71
|
export { default as UploadAltIcon } from "./UploadAltIcon";
|
|
72
|
+
export { default as UserBoldIcon } from "./UserBoldIcon";
|
|
58
73
|
export { default as UserCaptureAltIcon } from "./UserCaptureAltIcon";
|
|
74
|
+
export { default as UserDoubleAltIcon } from "./UserDoubleAltIcon";
|
|
59
75
|
export { default as UserDoubleFillIcon } from "./UserDoubleFillIcon";
|
|
60
76
|
export { default as UserPlusIcon } from "./UserPlusIcon";
|
|
61
77
|
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
|
|
|
@@ -2362,6 +2362,8 @@ const TwitterIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("s
|
|
|
2362
2362
|
|
|
2363
2363
|
const SvgXIcon = ({ 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: "M16.728 2.088H7.296A5.116 5.116 0 0 0 2.184 7.2v9.888A5.116 5.116 0 0 0 7.296 22.2h9.456a5.116 5.116 0 0 0 5.112-5.112V7.176a5.13 5.13 0 0 0-5.136-5.088m1.704 16.704h-3.696c-.024 0-.048 0-.048-.024l-3.456-5.016h-.024q-2.088 2.412-4.104 4.752c-.072.096-.168.168-.24.24-.024.024-.048.024-.072.024H5.784c-.024 0-.048 0-.024-.024l4.92-5.712q.036-.036 0-.072L5.784 5.832v-.024h3.72c.024 0 .024 0 .048.024l3.264 4.728h.024l4.056-4.728c.024-.024.048-.024.072-.024h1.008c.048 0 .048.024.024.048l-4.656 5.4q-.036.036 0 .072l5.112 7.44s0 .024-.024.024" }), jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M9.071 6.672H7.463c-.024 0-.024.024-.024.048l7.729 11.208h1.608c.023 0 .023-.024.023-.048z" })] }));
|
|
2364
2364
|
|
|
2365
|
+
const SvgArrowDownFillIcon = ({ 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", { fill: "currentColor", d: "M19.093 8.195a1 1 0 0 1 .212 1.398 53.178 53.178 0 0 1-2.457 3.063c-.663.762-1.397 1.55-2.082 2.156-.341.302-.694.58-1.039.787-.316.19-.751.401-1.228.401-.476 0-.91-.21-1.228-.401a7.4 7.4 0 0 1-1.038-.787c-.686-.606-1.42-1.394-2.082-2.156a53 53 0 0 1-2.457-3.063A1 1 0 0 1 6.5 8h12c.207 0 .415.063.594.195" })] }));
|
|
2366
|
+
|
|
2365
2367
|
const SvgArrowDownRightIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M14.167 14.167 5 5" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M9.167 14.89s4.694.396 5.407-.316c.712-.713.316-5.407.316-5.407" })] }));
|
|
2366
2368
|
|
|
2367
2369
|
const SvgArrowLeftThinIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.667, d: "M8.891 16.25q-2.557-2.414-5.116-4.835a1.666 1.666 0 0 1-.003-2.417q2.535-2.411 5.071-4.831M4.265 10.343H17.5" })] }));
|
|
@@ -2384,6 +2386,8 @@ const SvgCameraIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs(
|
|
|
2384
2386
|
|
|
2385
2387
|
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
2388
|
|
|
2389
|
+
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" })] })] })] }));
|
|
2390
|
+
|
|
2387
2391
|
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
2392
|
|
|
2389
2393
|
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 +2400,16 @@ const SvgDimondIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs(
|
|
|
2396
2400
|
|
|
2397
2401
|
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
2402
|
|
|
2403
|
+
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" })] }));
|
|
2404
|
+
|
|
2405
|
+
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" }) }) })] }));
|
|
2406
|
+
|
|
2399
2407
|
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
2408
|
|
|
2409
|
+
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" })] }));
|
|
2410
|
+
|
|
2411
|
+
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" })] }));
|
|
2412
|
+
|
|
2401
2413
|
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
2414
|
|
|
2403
2415
|
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,12 +2418,18 @@ const SvgFlameIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("
|
|
|
2406
2418
|
|
|
2407
2419
|
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
2420
|
|
|
2409
|
-
const
|
|
2421
|
+
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" })] }));
|
|
2422
|
+
|
|
2423
|
+
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" })] }));
|
|
2424
|
+
|
|
2425
|
+
const SvgForwordAltIcon = ({ 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: "m16 17-1.425-1.4 4.6-4.6-4.6-4.6L16 5l6 6zM2 19v-4q0-2.075 1.45-3.525Q4.925 10 7 10h6.175l-3.6-3.6L11 5l6 6-6 6-1.425-1.4 3.6-3.6H7q-1.25 0-2.125.875A2.9 2.9 0 0 0 4 15v4z" })] }));
|
|
2410
2426
|
|
|
2411
2427
|
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" })] }));
|
|
2412
2428
|
|
|
2413
2429
|
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" })] }));
|
|
2414
2430
|
|
|
2431
|
+
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" }) }) })] }));
|
|
2432
|
+
|
|
2415
2433
|
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" })] }));
|
|
2416
2434
|
|
|
2417
2435
|
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" })] }));
|
|
@@ -2438,12 +2456,20 @@ const SvgPawStationIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.j
|
|
|
2438
2456
|
|
|
2439
2457
|
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" })] }));
|
|
2440
2458
|
|
|
2459
|
+
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" })] }));
|
|
2460
|
+
|
|
2461
|
+
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" })] }));
|
|
2462
|
+
|
|
2441
2463
|
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" })] }));
|
|
2442
2464
|
|
|
2443
2465
|
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" })] }));
|
|
2444
2466
|
|
|
2445
2467
|
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" })] }));
|
|
2446
2468
|
|
|
2469
|
+
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" })] }));
|
|
2470
|
+
|
|
2471
|
+
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" })] }));
|
|
2472
|
+
|
|
2447
2473
|
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" })] }));
|
|
2448
2474
|
|
|
2449
2475
|
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" })] }));
|
|
@@ -2470,14 +2496,20 @@ const SvgTagIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("sv
|
|
|
2470
2496
|
|
|
2471
2497
|
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" })] }));
|
|
2472
2498
|
|
|
2499
|
+
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" })] }));
|
|
2500
|
+
|
|
2473
2501
|
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" })] }));
|
|
2474
2502
|
|
|
2475
2503
|
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" })] }));
|
|
2476
2504
|
|
|
2477
2505
|
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" })] }));
|
|
2478
2506
|
|
|
2507
|
+
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" })] }));
|
|
2508
|
+
|
|
2479
2509
|
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" })] }));
|
|
2480
2510
|
|
|
2511
|
+
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" })] }));
|
|
2512
|
+
|
|
2481
2513
|
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" })] }));
|
|
2482
2514
|
|
|
2483
2515
|
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" })] }));
|
|
@@ -2526,6 +2558,7 @@ exports.ArcByCenterXPIcon = SvgArcByCenterXPIcon;
|
|
|
2526
2558
|
exports.ArcIcon = SvgArcIcon;
|
|
2527
2559
|
exports.ArduinoIcon = ArduinoIcon;
|
|
2528
2560
|
exports.ArrowBackwardIcon = ArrowBackwardIcon;
|
|
2561
|
+
exports.ArrowDownFillIcon = SvgArrowDownFillIcon;
|
|
2529
2562
|
exports.ArrowDownRightIcon = SvgArrowDownRightIcon;
|
|
2530
2563
|
exports.ArrowDownwardIcon = ArrowDownwardIcon;
|
|
2531
2564
|
exports.ArrowForwardIcon = ArrowForwordIcon;
|
|
@@ -2573,6 +2606,7 @@ exports.CenterOutlineIcon = CenterOutlineIcon;
|
|
|
2573
2606
|
exports.ChatBubbleIcon = ChatBubbleIcon;
|
|
2574
2607
|
exports.CheckBoxCheckedIcon = CheckBoxCheckedIcon;
|
|
2575
2608
|
exports.CheckBoxFill = SvgCheckBoxFillIcon;
|
|
2609
|
+
exports.CheckBoxOutlineIcon = SvgCheckBoxOutlineIcon;
|
|
2576
2610
|
exports.CheckBoxUncheckedIcon = CheckBoxUncheckedIcon;
|
|
2577
2611
|
exports.CheckCircleAltIcon = SvgCheckCircleAltIcon;
|
|
2578
2612
|
exports.CheckCircleFillIcon = SvgCheckCircleFillIcon;
|
|
@@ -2658,6 +2692,8 @@ exports.DoNotDistrubIcon = DoNotDistrubIcon;
|
|
|
2658
2692
|
exports.DollarBagIcon = DollarBagIcon;
|
|
2659
2693
|
exports.DollarCircleIcon = SvgDollarCircleIcon;
|
|
2660
2694
|
exports.DoneAllIcon = DoneAllIcon;
|
|
2695
|
+
exports.DoubleCheckIcon = SvgDoubleCheckIcon;
|
|
2696
|
+
exports.DoublePaperIcon = SvgDoublePaperIcon;
|
|
2661
2697
|
exports.DoublePlayIcon = SvgDoublePlayIcon;
|
|
2662
2698
|
exports.DoubleSettingIcon = DoubleSettingIcon;
|
|
2663
2699
|
exports.DownTipIcon = DownTipIcon;
|
|
@@ -2681,7 +2717,9 @@ exports.EqualIcon = SvgEqualIcon;
|
|
|
2681
2717
|
exports.EraserIcon = EraserIcon;
|
|
2682
2718
|
exports.ErcIcon = SvgErcIcon;
|
|
2683
2719
|
exports.ErrorIcon = SvgErrorIcon;
|
|
2720
|
+
exports.ExpandViewIcon = SvgExpandViewIcon;
|
|
2684
2721
|
exports.ExtendToNextIcon = SvgExtendToNextIcon;
|
|
2722
|
+
exports.ExternalLinkIcon = SvgExternalLinkIcon;
|
|
2685
2723
|
exports.ExtrudeAltIcon = SvgExtrudeAltIcon;
|
|
2686
2724
|
exports.ExtrudeIcon = SvgExtrudeIcon;
|
|
2687
2725
|
exports.EyeIcon = EyeIcon;
|
|
@@ -2706,11 +2744,13 @@ exports.FlameIcon = SvgFlameIcon;
|
|
|
2706
2744
|
exports.FlipHorizontalIcon = FlipHorizontalIcon;
|
|
2707
2745
|
exports.FlipVerticalIcon = FlipVerticalIcon;
|
|
2708
2746
|
exports.FolderAltIcon = SvgFolderIcon;
|
|
2747
|
+
exports.FolderExportAltIcon = SvgFolderExportAltIcon;
|
|
2709
2748
|
exports.FolderExportIcon = SvgFolderExportIcon;
|
|
2710
2749
|
exports.FolderIcon = SvgFolderIcon$1;
|
|
2711
2750
|
exports.FolderOutlineIcon = FolderOutlineIcon;
|
|
2712
2751
|
exports.FolderProtectedIcon = FolderProtectedIcon;
|
|
2713
2752
|
exports.FormIcon = SvgFormIcon;
|
|
2753
|
+
exports.ForwardAltIcon = SvgForwordAltIcon;
|
|
2714
2754
|
exports.ForwordIcon = ForwordIcon;
|
|
2715
2755
|
exports.FrameIcon = SvgFrameIcon;
|
|
2716
2756
|
exports.FrameOriginIcon = SvgFrameOriginIcon;
|
|
@@ -2738,6 +2778,7 @@ exports.HomeIcon = SvgHomeIcon;
|
|
|
2738
2778
|
exports.HumbergerIcon = SvgHumbergurIcon;
|
|
2739
2779
|
exports.IcIcon = IcIcon;
|
|
2740
2780
|
exports.IdeezaIcon = IdeezaIcon;
|
|
2781
|
+
exports.ImageAltIcon = SvgImageAltIcon;
|
|
2741
2782
|
exports.ImageIcon = SvgImageIcon;
|
|
2742
2783
|
exports.InfoIcon = SvgInfoIcon;
|
|
2743
2784
|
exports.InsertComponentFrom3DfinditIcon = SvgInsertComponentFrom3DfinditIcon;
|
|
@@ -2841,6 +2882,7 @@ exports.PawStationIcon = SvgPawStationIcon;
|
|
|
2841
2882
|
exports.PayRollIcon = SvgPayRollIcon;
|
|
2842
2883
|
exports.PaypalIcon = PaypalIcon;
|
|
2843
2884
|
exports.PcIcon = SvgPcIcon;
|
|
2885
|
+
exports.PenIcon = SvgPenIcon;
|
|
2844
2886
|
exports.PerpendicularIcon = SvgPerpendicularIcon;
|
|
2845
2887
|
exports.PersonBookIcon = PersonBookIcon;
|
|
2846
2888
|
exports.PersonRemoveIcon = PersonRemoveIcon;
|
|
@@ -2851,6 +2893,7 @@ exports.PlaySkipBackIcon = SvgPlaySkipBackIcon;
|
|
|
2851
2893
|
exports.PlaySkipForwordIcon = SvgPlaySkipForwordIcon;
|
|
2852
2894
|
exports.PlayStoreIcon = PlayStoreIcon;
|
|
2853
2895
|
exports.PlusIcon = PlusIcon;
|
|
2896
|
+
exports.PlusThinIcon = SvgPlusThinIcon;
|
|
2854
2897
|
exports.PointAltIcon = SvgPointIcon$1;
|
|
2855
2898
|
exports.PointIcon = SvgPointIcon;
|
|
2856
2899
|
exports.PointRightOutlineIcon = PointRightOutlineIcon;
|
|
@@ -2892,6 +2935,7 @@ exports.ReplacePartWith3DfinditIcon = SvgReplacePartWith3DfinditIcon;
|
|
|
2892
2935
|
exports.ReplacePartWithCopyIcon = SvgReplacePartWithCopyIcon;
|
|
2893
2936
|
exports.ReplacePartWithNewPartIcon = SvgReplacePartWithNewPartIcon;
|
|
2894
2937
|
exports.ReplacePartWithStandardPartIcon = SvgReplacePartWithStandardPartIcon;
|
|
2938
|
+
exports.ReplyIcon = SvgReplyIcon;
|
|
2895
2939
|
exports.RepositionOriginIcon = SvgRepositionOriginIcon;
|
|
2896
2940
|
exports.RerouteIcon = SvgRerouteIcon;
|
|
2897
2941
|
exports.RestoreSnapIcon = SvgRestoreSnapIcon;
|
|
@@ -2922,6 +2966,7 @@ exports.SelectLasoIcon = SelectLasoIcon;
|
|
|
2922
2966
|
exports.SelectVisiblePartIcon = SelectVisiblePartIcon;
|
|
2923
2967
|
exports.SendAltIcon = SendAltIcon;
|
|
2924
2968
|
exports.SendIcon = SendIcon;
|
|
2969
|
+
exports.SendUpAltIcon = SvgSendUpAltIcon;
|
|
2925
2970
|
exports.SendUpIcon = SvgSendUpIcon;
|
|
2926
2971
|
exports.SettingIcon = SettingIcon;
|
|
2927
2972
|
exports.SettingOutlineIcon = SvgSettingOutlineIcon;
|
|
@@ -2990,6 +3035,7 @@ exports.TopIcon = SvgTopIcon;
|
|
|
2990
3035
|
exports.TorusIcon = SvgTorusIcon;
|
|
2991
3036
|
exports.TrandingUpIcon = TrandingUpIcon;
|
|
2992
3037
|
exports.TrashAltIcon = TrashAltIcon;
|
|
3038
|
+
exports.TrashBoldIcon = SvgTrashBoldIcon;
|
|
2993
3039
|
exports.TrashIcon = TrashIcon;
|
|
2994
3040
|
exports.TrashOutlineIcon = SvgTrashOutlineIcon;
|
|
2995
3041
|
exports.TriLineArrowIcon = SvgTriLineArrowIcon;
|
|
@@ -3007,8 +3053,10 @@ exports.UnionIcon = SvgUnionIcon;
|
|
|
3007
3053
|
exports.UnlockIcon = SvgUnlockIcon;
|
|
3008
3054
|
exports.UploadAltIcon = SvgUploadAltIcon;
|
|
3009
3055
|
exports.UploadIcon = UploadIcon;
|
|
3056
|
+
exports.UserBoldIcon = SvgUserBoldIcon;
|
|
3010
3057
|
exports.UserCaptureAltIcon = SvgUserCaptureIcon;
|
|
3011
3058
|
exports.UserCaptureIcon = UserCaptureIcon;
|
|
3059
|
+
exports.UserDoubleAltIcon = SvgUserDoubleAltIcon;
|
|
3012
3060
|
exports.UserDoubleFillIcon = SvgUserDoubleFillIcon;
|
|
3013
3061
|
exports.UserDoubleIcon = UserDoubleIcon;
|
|
3014
3062
|
exports.UserGroupAltIcon = UserGroupAltIcon;
|