@ideeza/icons 2.0.5 → 2.0.7
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/general/BusAltIcon.d.ts +7 -0
- package/dist/icons/general/TrainIcon.d.ts +7 -0
- package/dist/icons/social/FacebookAltIcon.d.ts +7 -0
- package/dist/icons/social/LinkedinAltIcon.d.ts +7 -0
- package/dist/icons/social/XIcon.d.ts +7 -0
- package/dist/icons/social/index.d.ts +3 -0
- package/dist/icons/v2/general/BoxCroseIcon.d.ts +7 -0
- package/dist/icons/v2/general/BugAltIcon.d.ts +7 -0
- package/dist/icons/v2/general/CheckCircleAltIcon.d.ts +7 -0
- package/dist/icons/v2/general/ClockProgressIcon.d.ts +7 -0
- package/dist/icons/v2/general/DimondIcon.d.ts +7 -0
- package/dist/icons/v2/general/FasterIcon.d.ts +7 -0
- package/dist/icons/v2/general/FlameIcon.d.ts +7 -0
- package/dist/icons/v2/general/FormIcon.d.ts +7 -0
- package/dist/icons/v2/general/LockAltIcon.d.ts +7 -0
- package/dist/icons/v2/general/MultilineIcon.d.ts +7 -0
- package/dist/icons/v2/general/SendUpIcon.d.ts +7 -0
- package/dist/icons/v2/general/TargetBoardIcon.d.ts +7 -0
- package/dist/icons/v2/general/TargetHalfIcon.d.ts +7 -0
- package/dist/icons/v2/general/UploadAltIcon.d.ts +7 -0
- package/dist/icons/v2/general/index.d.ts +14 -0
- package/dist/index.cjs +51 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.esm.js +35 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const BusAltIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default BusAltIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const TrainIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default TrainIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgFacebookAltIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgFacebookAltIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgLinkedinAltIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgLinkedinAltIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgXIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgXIcon;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
export { default as FacebookAltIcon } from "./FacebookAltIcon";
|
|
1
2
|
export { default as FacebookIcon } from "./FacebookIcon";
|
|
2
3
|
export { default as InstagramIcon } from "./InstagramIcon";
|
|
4
|
+
export { default as LinkedInAltIcon } from "./LinkedinAltIcon";
|
|
3
5
|
export { default as LinkedInIcon } from "./LinkedInIcon";
|
|
4
6
|
export { default as ShareAltIcon } from "./ShareAltIcon";
|
|
5
7
|
export { default as ShareIcon } from "./ShareIcon";
|
|
6
8
|
export { default as TwitterIcon } from "./TwitterIcon";
|
|
9
|
+
export { default as XIcon } from "./XIcon";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgBoxCroseIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgBoxCroseIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgBugAltIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgBugAltIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgCheckCircleAltIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgCheckCircleAltIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgClockProgressIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgClockProgressIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgDimondIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgDimondIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgFasterIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgFasterIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgFlameIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgFlameIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgFormIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgFormIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const LockAltIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default LockAltIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgMultilineIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgMultilineIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgSendUpIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgSendUpIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgTargetBoardIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgTargetBoardIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgTargetHalfIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgTargetHalfIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgUploadAltIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgUploadAltIcon;
|
|
@@ -1,21 +1,31 @@
|
|
|
1
1
|
export { default as ArrowDownRightIcon } from "./ArrowDownRightIcon";
|
|
2
2
|
export { default as ArrowLeftThinIcon } from "./ArrowLeftThinIcon";
|
|
3
3
|
export { default as ArrowUpRightIcon } from "./ArrowUpRightIcon";
|
|
4
|
+
export { default as BoxCrossIcon } from "./BoxCroseIcon";
|
|
4
5
|
export { default as BlogIcon } from "./BlogIcon";
|
|
5
6
|
export { default as BroadcastIcon } from "./BroadcastIcon";
|
|
7
|
+
export { default as BugAltIcon } from "./BugAltIcon";
|
|
6
8
|
export { default as CalendarOutlineIcon } from "./CalendarOutlineIcon";
|
|
7
9
|
export { default as CameraIcon } from "./CameraIcon";
|
|
10
|
+
export { default as CheckCircleAltIcon } from "./CheckCircleAltIcon";
|
|
8
11
|
export { default as CheckCircleFillIcon } from "./CheckCircleFillIcon";
|
|
12
|
+
export { default as ClockProgressIcon } from "./ClockProgressIcon";
|
|
9
13
|
export { default as DashboardMenuIcon } from "./DashboardMenuIcon";
|
|
14
|
+
export { default as DimondIcon } from "./DimondIcon";
|
|
10
15
|
export { default as DollarCircleIcon } from "./DollarCircleIcon";
|
|
16
|
+
export { default as FasterIcon } from "./FasterIcon";
|
|
11
17
|
export { default as FileFolderIcon } from "./FileFolderIcon";
|
|
18
|
+
export { default as FlameIcon } from "./FlameIcon";
|
|
12
19
|
export { default as FolderAltIcon } from "./FolderAltIcon";
|
|
20
|
+
export { default as FormIcon } from "./FormIcon";
|
|
13
21
|
export { default as HomeIcon } from "./HomeIcon";
|
|
14
22
|
export { default as KeyboardCurveRightArrowIcon } from "./KeyboardCurveRightArrowIcon";
|
|
15
23
|
export { default as KeyboardCurveUptArrowIcon } from "./KeyboardCurveUpIcon";
|
|
24
|
+
export { default as LockAltIcon } from "./LockAltIcon";
|
|
16
25
|
export { default as LogoutCurveIcon } from "./LogoutCurveIcon";
|
|
17
26
|
export { default as MessageIcon } from "./MessageIcon";
|
|
18
27
|
export { default as MoonHalfIcon } from "./MoonHalfIcon";
|
|
28
|
+
export { default as MultilineIcon } from "./MultilineIcon";
|
|
19
29
|
export { default as NewsFeedIcon } from "./NewsFeedIcon";
|
|
20
30
|
export { default as NoteIcon } from "./NoteIcon";
|
|
21
31
|
export { default as PartsIcon } from "./PartsIcon";
|
|
@@ -23,6 +33,7 @@ export { default as PawStationIcon } from "./PawStationIcon";
|
|
|
23
33
|
export { default as PayRollIcon } from "./PayRollIcon";
|
|
24
34
|
export { default as PrintQueueIcon } from "./PrintQueueIcon";
|
|
25
35
|
export { default as ReferAltIcon } from "./ReferAltIcon";
|
|
36
|
+
export { default as SendUpIcon } from "./SendUpIcon";
|
|
26
37
|
export { default as SettingOutlineIcon } from "./SettingOutlineIcon";
|
|
27
38
|
export { default as ShareitIcon } from "./ShareitIcon";
|
|
28
39
|
export { default as ShieldIcon } from "./ShieldIcon";
|
|
@@ -31,10 +42,13 @@ export { default as ShieldLockIcon } from "./ShieldLockIcon";
|
|
|
31
42
|
export { default as SidebarCollapseIcon } from "./SidebarCollapseIcon";
|
|
32
43
|
export { default as SystemHubIcon } from "./SystemHubIcon";
|
|
33
44
|
export { default as TagIcon } from "./TagIcon";
|
|
45
|
+
export { default as TargetBoardIcon } from "./TargetBoardIcon";
|
|
46
|
+
export { default as TargetHalfIcon } from "./TargetHalfIcon";
|
|
34
47
|
export { default as TickFillIcon } from "./TickFillIcon";
|
|
35
48
|
export { default as TickIcon } from "./TickIcon";
|
|
36
49
|
export { default as UafoIcon } from "./UafoIcon";
|
|
37
50
|
export { default as UnlockIcon } from "./UnlockIcon";
|
|
51
|
+
export { default as UploadAltIcon } from "./UploadAltIcon";
|
|
38
52
|
export { default as UserCaptureAltIcon } from "./UserCaptureAltIcon";
|
|
39
53
|
export { default as UserDoubleFillIcon } from "./UserDoubleFillIcon";
|
|
40
54
|
export { default as UserPlusIcon } from "./UserPlusIcon";
|
package/dist/index.cjs
CHANGED
|
@@ -2342,10 +2342,14 @@ const SvgXYKeyInIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs
|
|
|
2342
2342
|
|
|
2343
2343
|
const SvgZeroOriginIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 18 18", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinejoin: "round", strokeWidth: 1.2, d: "M14.816 11.883a6.1 6.1 0 0 0 1.517-4.05A6.1 6.1 0 0 0 15.141 4.2l1.417-2.758-4.783.433a6.4 6.4 0 0 0-1.609-.208A6.16 6.16 0 0 0 4.525 5.35L1.44 5.5l2.767 3.942a6.18 6.18 0 0 0 5.967 4.566c.225 0 .45-.016.666-.041l1.675 2.6 2.034-4.384c.091-.091.183-.191.275-.291z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinejoin: "round", strokeWidth: 1.2, d: "M10.167 10.758a2.925 2.925 0 1 0 0-5.85 2.925 2.925 0 0 0 0 5.85Z" })] }));
|
|
2344
2344
|
|
|
2345
|
+
const SvgFacebookAltIcon = ({ 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: "M22.28 11.96c0-5.655-4.585-10.24-10.24-10.24S1.8 6.305 1.8 11.96c0 5.111 3.744 9.347 8.64 10.116V14.92h-2.6v-2.96h2.6V9.704c0-2.566 1.529-3.984 3.868-3.984 1.12 0 2.292.2 2.292.2v2.52h-1.292c-1.271 0-1.668.79-1.668 1.6v1.92h2.84l-.454 2.96H13.64v7.156c4.895-.769 8.64-5.005 8.64-10.116" }), jsxRuntimeExports.jsx("path", { fill: "white", d: "m16.026 14.92.454-2.96h-2.84v-1.92c0-.81.396-1.6 1.669-1.6h1.29V5.92s-1.171-.2-2.291-.2c-2.34 0-3.868 1.418-3.868 3.984v2.256h-2.6v2.96h2.6v7.156c1.06.165 2.14.165 3.2 0V14.92z" })] }));
|
|
2346
|
+
|
|
2345
2347
|
const FacebookIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 7 11", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M4.156 5.945v4.137h-1.9V5.946H.675V4.268h1.58v-.61C2.255 1.392 3.201.2 5.203.2c.614 0 .768.099 1.104.18v1.659c-.376-.066-.482-.103-.873-.103-.464 0-.713.132-.94.391q-.34.39-.34 1.352v.593h2.153l-.577 1.677H4.156z" })] }));
|
|
2346
2348
|
|
|
2347
2349
|
const InstagramIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 9 10", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M7.32 9.376H1.68A1.42 1.42 0 0 1 .265 7.961V2.32C.265 1.543.9.907 1.68.907h5.64c.779 0 1.415.636 1.415 1.416V7.96c0 .782-.633 1.415-1.416 1.415" }), jsxRuntimeExports.jsx("path", { fill: "#4A4450", d: "M4.502 7.317a2.16 2.16 0 0 1-1.538-.636 2.16 2.16 0 0 1-.636-1.538c0-.581.226-1.127.636-1.538a2.16 2.16 0 0 1 1.538-.636c.58 0 1.127.226 1.537.636s.637.957.637 1.538a2.16 2.16 0 0 1-.637 1.538c-.414.41-.956.636-1.537.636m0-3.886a1.713 1.713 0 0 0 0 3.423c.943 0 1.711-.765 1.711-1.711A1.717 1.717 0 0 0 4.502 3.43M7.1 2.897a.417.417 0 1 0 0-.835.417.417 0 0 0 0 .835" })] }));
|
|
2348
2350
|
|
|
2351
|
+
const SvgLinkedinAltIcon = ({ 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: "M11.959 1.453c-5.87 0-10.63 4.76-10.63 10.63s4.76 10.63 10.63 10.63 10.63-4.76 10.63-10.63-4.76-10.63-10.63-10.63M9.123 17.222H6.789v-7.54h2.334zM7.945 8.694c-.762 0-1.38-.622-1.38-1.39 0-.77.618-1.392 1.38-1.392s1.38.623 1.38 1.391c0 .769-.618 1.391-1.38 1.391m9.924 8.528h-2.323v-3.958c0-1.085-.412-1.691-1.27-1.691-.934 0-1.422.63-1.422 1.691v3.958h-2.239v-7.54h2.239v1.015s.673-1.245 2.272-1.245 2.743.976 2.743 2.996z" })] }));
|
|
2352
|
+
|
|
2349
2353
|
const LinkedInIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 11 11", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M2.79 3.45H.725v6.585H2.79zM8.376 3.307a4 4 0 0 0-.238-.019 2.41 2.41 0 0 0-2.127 1.061v-.88H4.037v6.585H6.1V6.96c0-.447-.033-.923.19-1.332.191-.343.534-.514.92-.514 1.141 0 1.165 1.033 1.165 1.128v3.84h2.065V5.785c0-1.47-.747-2.336-2.065-2.479M1.758 2.598a1.199 1.199 0 1 0 0-2.398 1.199 1.199 0 0 0 0 2.398" })] }));
|
|
2350
2354
|
|
|
2351
2355
|
const ShareAltIcon = ({ 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("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M21 9.333a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7M7 17.5a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7M21 25.667a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7M10.022 15.762l7.968 4.643M17.978 7.595l-7.957 4.643" })] }));
|
|
@@ -2354,42 +2358,64 @@ const ShareIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg
|
|
|
2354
2358
|
|
|
2355
2359
|
const TwitterIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 11 10", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M.7 8.162c1.045.06 1.959-.185 2.85-.832-.9-.154-1.525-.565-1.864-1.416.263-.036.493.032.765-.077C1.564 5.448.99 4.865.967 3.857c.28.022.493.207.828.18C.98 3.241.732 2.373 1.243 1.32c.85.977 1.845 1.642 3.062 1.954.068.018.131.036.2.05.311.072.682.226.872.203.326-.04 0-.416.082-.905.257-1.52 1.93-2.211 3.17-1.32.362.262.647.258 1.004.1.186-.082.376-.164.597-.259-.05.435-.384.674-.65.995.302.068.546-.018.827-.108-.095.312-.33.488-.543.66-.222.177-.308.362-.317.652-.135 4.383-5.115 7.77-8.521 5.075-.33-.263-.01 0-.326-.254" })] }));
|
|
2356
2360
|
|
|
2361
|
+
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" })] }));
|
|
2362
|
+
|
|
2357
2363
|
const SvgArrowDownRightIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M14.167 14.167 5 5" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M9.167 14.89s4.694.396 5.407-.316c.712-.713.316-5.407.316-5.407" })] }));
|
|
2358
2364
|
|
|
2359
2365
|
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" })] }));
|
|
2360
2366
|
|
|
2361
2367
|
const SvgArrowUpRightIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M13.75 6.25 5 15" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M6.667 5.157s6.706-.566 7.724.452.452 7.724.452 7.724" })] }));
|
|
2362
2368
|
|
|
2369
|
+
const SvgBoxCroseIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 32 32", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "m24.03 9.95-9.668 5.62L4.32 9.913 14.47 4z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M14.362 15.57 14.326 28 4 22.36l.32-12.448zM14.373 15.57 14.336 28M20.375 17.95l7.62 7.817M27.995 17.95l-7.62 7.817" })] }));
|
|
2370
|
+
|
|
2363
2371
|
const SvgBlogIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinejoin: "round", strokeWidth: 1.5, d: "M2.083 10c0-3.732 0-5.598 1.16-6.757 1.159-1.16 3.025-1.16 6.757-1.16s5.598 0 6.757 1.16c1.16 1.16 1.16 3.025 1.16 6.757s0 5.598-1.16 6.757c-1.16 1.16-3.025 1.16-6.757 1.16s-5.598 0-6.758-1.16C2.083 15.597 2.083 13.732 2.083 10Z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M8.333 8.333h.833M8.333 12.5h3.333" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinejoin: "round", strokeWidth: 1.5, d: "M12.465 9.552v-.795c0-1.56 0-2.34-.396-2.887-.75-1.037-2.208-.858-3.337-.858-1.128 0-2.586-.179-3.336.858C5 6.417 5 7.197 5 8.757v2.081c0 1.962 0 2.943.607 3.553.608.609 1.585.609 3.54.609h3.092c2.165 0 3.03-1.523 2.688-3.693-.203-1.29-1.317-1.755-2.462-1.755Z" })] }));
|
|
2364
2372
|
|
|
2365
2373
|
const SvgBroadcastIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M2 10c0-3.317 2.683-6 6-6l-.857 1.714M22 14c0 3.317-2.683 6-6 6l.857-1.714M17.25 2.516c1.83-.755 3.442-.504 4.315-.344.249.046.435.29.435.573v6.46c0 .338-.262.59-.56.538-.896-.159-2.443-.355-4.19.365-1.878.775-3.768.92-4.8.888-.256-.008-.45-.25-.45-.54V3.996c0-.333.255-.595.551-.59 1.05.02 2.88-.14 4.699-.89M7.25 13.516c1.83-.755 3.441-.504 4.315-.344.249.046.435.29.435.573v6.46c0 .338-.262.59-.56.538-.896-.159-2.443-.355-4.19.366-1.878.774-3.768.92-4.8.887-.256-.008-.45-.25-.45-.54v-6.461c0-.333.255-.595.551-.59 1.05.02 2.88-.14 4.699-.89" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M17 6.5h.009M7 17.5h.009" })] }));
|
|
2366
2374
|
|
|
2375
|
+
const SvgBugAltIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 37 36", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M16.917 20.7a1.333 1.333 0 1 0 2.666 0h-2.666m9.433 4.067a1.333 1.333 0 1 0 0 2.666v-2.666m2.717 6.733a1.333 1.333 0 1 0 2.666 0h-2.666M10.15 27.433a1.333 1.333 0 1 0 0-2.666v2.666M4.767 31.5a1.333 1.333 0 1 0 2.666 0H4.767M4.75 19.367a1.333 1.333 0 1 0 0 2.666v-2.666m4.05 2.666a1.333 1.333 0 1 0 0-2.666v2.666m18.9-2.666a1.333 1.333 0 1 0 0 2.666v-2.666m4.05 2.666a1.333 1.333 0 1 0 0-2.666v2.666m-4.05-8.066a1.333 1.333 0 1 0 0 2.666v-2.666M33.083 9.9a1.333 1.333 0 1 0-2.666 0h2.666M8.8 16.633a1.333 1.333 0 1 0 0-2.666v2.666M6.083 9.9a1.333 1.333 0 1 0-2.666 0h2.666m7.174-1.757a1.333 1.333 0 1 0 1.886-1.886L14.2 7.2zm-.814-4.586a1.333 1.333 0 1 0-1.886 1.886L11.5 4.5zm8.914 2.7a1.333 1.333 0 0 0 1.886 1.886L22.3 7.2zm4.586-.814a1.333 1.333 0 0 0-1.886-1.886L25 4.5zM18.25 15.3h-1.333v5.4h2.666v-5.4zm9.45 4.05h-1.333c0 6.305-3.927 10.817-8.117 10.817v2.666c6.248 0 10.783-6.368 10.783-13.483zM18.25 31.5v-1.333c-4.19 0-8.117-4.512-8.117-10.817H7.467c0 7.115 4.535 13.483 10.783 13.483zM8.8 19.35h1.333c0-6.305 3.927-10.817 8.117-10.817V5.867c-6.248 0-10.783 6.368-10.783 13.483zM18.25 7.2v1.333c4.19 0 8.117 4.512 8.117 10.817h2.666c0-7.115-4.535-13.483-10.783-13.483zm8.1 18.9v1.333c.605 0 1.254.324 1.797 1.049.544.725.92 1.787.92 3.018h2.666c0-1.752-.53-3.389-1.453-4.618-.922-1.23-2.298-2.115-3.93-2.115zm-16.2 0v-1.333c-1.632 0-3.008.885-3.93 2.115-.922 1.229-1.453 2.866-1.453 4.618h2.666c0-1.23.376-2.293.92-3.018.543-.725 1.192-1.049 1.797-1.049zm-5.4-5.4v1.333H8.8v-2.666H4.75zm22.95 0v1.333h4.05v-2.666H27.7zm0-5.4v1.333c1.632 0 3.008-.885 3.93-2.115.923-1.229 1.453-2.866 1.453-4.618h-2.666c0 1.23-.376 2.293-.92 3.018-.543.725-1.192 1.049-1.797 1.049zm-18.9 0v-1.333c-.605 0-1.254-.324-1.797-1.049-.544-.725-.92-1.787-.92-3.018H3.417c0 1.752.53 3.389 1.453 4.618.922 1.23 2.298 2.115 3.93 2.115zm17.55-2.7-.782-1.08c-2.16 1.565-4.66 2.447-7.318 2.447v2.666c3.268 0 6.31-1.09 8.882-2.953zm-8.1 2.7v-1.333c-2.657 0-5.159-.883-7.318-2.447l-.782 1.08-.782 1.08c2.572 1.864 5.614 2.953 8.882 2.953zM14.2 7.2l.943-.943-2.7-2.7-.943.943-.943.943 2.7 2.7zm8.1 0 .943.943 2.7-2.7L25 4.5l-.943-.943-2.7 2.7z" })] }));
|
|
2376
|
+
|
|
2367
2377
|
const SvgCalendarOutlineIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M18 2v2M6 2v2M2.5 12.243c0-4.357 0-6.536 1.252-7.89C5.004 3 7.02 3 11.05 3h1.9c4.03 0 6.046 0 7.298 1.354C21.5 5.707 21.5 7.886 21.5 12.244v.513c0 4.357 0 6.536-1.252 7.89C18.996 22 16.98 22 12.95 22h-1.9c-4.03 0-6.046 0-7.298-1.354C2.5 19.293 2.5 17.114 2.5 12.756zM3 8h18" })] }));
|
|
2368
2378
|
|
|
2369
2379
|
const SvgCameraIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M16.226 7.125c2.619.384 4.635 2.637 4.635 5.356v5.866a2.517 2.517 0 0 1-2.518 2.518H6.337a2.517 2.517 0 0 1-2.518-2.518v-5.866c0-2.719 2.016-4.972 4.634-5.356" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12.34 17.098a3.138 3.138 0 1 0 0-6.277 3.138 3.138 0 0 0 0 6.277M8.444 9.032V6.76a3.894 3.894 0 0 1 3.896-3.895 3.894 3.894 0 0 1 3.895 3.895V8.65" }), jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M12.3 8.5a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3" })] }));
|
|
2370
2380
|
|
|
2381
|
+
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" })] }));
|
|
2382
|
+
|
|
2371
2383
|
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" })] }));
|
|
2372
2384
|
|
|
2385
|
+
const SvgClockProgressIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 32 32", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2.667, d: "m25.267 11.476 3.347-.204c-2.4-6.332-9.287-9.939-16.003-8.146-7.152 1.91-11.4 9.222-9.489 16.332 1.912 7.11 9.26 11.326 16.413 9.416a13.38 13.38 0 0 0 9.796-10.895" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2.667, d: "M16 10.667V16l2.667 2.667" })] }));
|
|
2386
|
+
|
|
2373
2387
|
const SvgDashboardMenuIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("g", { stroke: "currentColor", strokeWidth: 1.5, clipPath: "url(#dashboard-menu-icon_svg__a)", children: jsxRuntimeExports.jsx("path", { d: "M1.667 5c0-1.571 0-2.357.488-2.845S3.43 1.667 5 1.667s2.357 0 2.846.488.488 1.274.488 2.845v1.667c0 1.571 0 2.357-.488 2.845C7.357 10 6.572 10 5 10c-1.571 0-2.357 0-2.845-.488s-.488-1.274-.488-2.845zM1.667 15.833c0-.776 0-1.165.127-1.47.169-.41.493-.734.902-.903.306-.127.694-.127 1.471-.127h1.667c.776 0 1.165 0 1.47.127.41.17.734.494.903.902.127.306.127.695.127 1.471s0 1.165-.127 1.472c-.17.408-.494.732-.902.901-.306.127-.695.127-1.471.127H4.167c-.777 0-1.165 0-1.471-.127a1.67 1.67 0 0 1-.902-.901c-.127-.307-.127-.695-.127-1.472ZM11.667 13.333c0-1.571 0-2.357.488-2.845S13.43 10 15 10s2.357 0 2.846.488.488 1.274.488 2.845V15c0 1.571 0 2.357-.488 2.845-.489.488-1.274.488-2.846.488-1.571 0-2.357 0-2.845-.488s-.488-1.274-.488-2.845zM11.667 4.167c0-.777 0-1.165.127-1.471.169-.409.493-.733.902-.902.306-.127.694-.127 1.471-.127h1.667c.776 0 1.165 0 1.47.127.41.169.734.493.903.902.127.306.127.694.127 1.47 0 .777 0 1.166-.127 1.472-.17.408-.494.733-.902.902-.306.127-.695.127-1.471.127h-1.667c-.777 0-1.165 0-1.471-.127a1.67 1.67 0 0 1-.902-.902c-.127-.306-.127-.695-.127-1.471Z" }) }), jsxRuntimeExports.jsx("defs", { children: jsxRuntimeExports.jsx("clipPath", { id: "dashboard-menu-icon_svg__a", children: jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M0 0h20v20H0z" }) }) })] }));
|
|
2374
2388
|
|
|
2389
|
+
const SvgDimondIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 37 36", "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.5, d: "m18.245 29.22 11.94-14.895-4.56-7.5h-14.76l-4.56 7.5zM6.305 14.325H29.96" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "m18.25 29.22 4.71-14.895" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2.5, d: "m18.25 29.22-4.71-14.895" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "m31.726 21.51-6.195 7.71M4.781 21.51l6.195 7.71" })] }));
|
|
2390
|
+
|
|
2375
2391
|
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" })] }));
|
|
2376
2392
|
|
|
2393
|
+
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" })] }));
|
|
2394
|
+
|
|
2377
2395
|
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" })] })] })] }));
|
|
2378
2396
|
|
|
2397
|
+
const SvgFlameIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 22 22", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { fill: "url(#flame-icon_svg__a)", fillRule: "evenodd", d: "M12.97 21.742q1.64-2.427.302-5.242-.372 1.51-1.362 1.834.92-2.625-1.535-5.671-.054 3.145-1.513 4.584-2.01 1.978.048 4.466Q.368 17.168 6.5 9.52q.38 1.848 1.843 2.269Q6.748 5.022 11.698.258c.02 7.049 2.182 7.675 4.915 10.822 2.95 3.776 1.216 8.133-3.643 10.662", clipRule: "evenodd" }), jsxRuntimeExports.jsx("defs", { children: jsxRuntimeExports.jsxs("linearGradient", { id: "flame-icon_svg__a", x1: 17.594, x2: 5.024, y1: 6.154, y2: 18.725, gradientUnits: "userSpaceOnUse", children: [jsxRuntimeExports.jsx("stop", { stopColor: "#EF3E3D" }), jsxRuntimeExports.jsx("stop", { offset: 1, stopColor: "#FFC828" })] }) })] }));
|
|
2398
|
+
|
|
2379
2399
|
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" })] }));
|
|
2380
2400
|
|
|
2401
|
+
const SvgFormIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 64 64", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 3.222, d: "M9.336 24.983c0-9.263 0-13.894 2.734-16.772s7.133-2.878 15.933-2.878h8c8.8 0 13.199 0 15.933 2.878 2.733 2.877 2.733 7.509 2.733 16.772v14.035c0 9.262 0 13.893-2.733 16.771s-7.134 2.878-15.933 2.878h-8c-8.8 0-13.2 0-15.933-2.878S9.336 48.28 9.336 39.018z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 3.222, d: "m21.336 5.333.22 1.316c.531 3.192.797 4.789 1.916 5.737 1.12.947 2.738.947 5.974.947h5.113c3.237 0 4.855 0 5.974-.947 1.119-.948 1.385-2.545 1.917-5.737l.22-1.316" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 3.222, d: "M21.336 42.667h10.667M21.336 29.333h21.333" })] }));
|
|
2402
|
+
|
|
2381
2403
|
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" })] }));
|
|
2382
2404
|
|
|
2383
2405
|
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" })] }));
|
|
2384
2406
|
|
|
2385
2407
|
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" })] }));
|
|
2386
2408
|
|
|
2409
|
+
const LockAltIcon = ({ 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", strokeWidth: 1.5, d: "M5.693 25.126c.3 2.227 2.144 3.972 4.39 4.075 1.888.087 3.807.132 5.92.132s4.031-.045 5.92-.132c2.245-.103 4.09-1.848 4.39-4.075.195-1.453.356-2.943.356-4.46s-.161-3.006-.357-4.459c-.3-2.227-2.144-3.972-4.389-4.075a127 127 0 0 0-5.92-.132c-2.113 0-4.032.045-5.92.132-2.246.103-4.09 1.848-4.39 4.075-.196 1.453-.357 2.943-.357 4.46s.161 3.006.357 4.46Z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M10 12V8.667a6 6 0 0 1 12 0V12" })] }));
|
|
2410
|
+
|
|
2387
2411
|
const SvgLogoutAltIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.25, d: "M11.667 2.58q-.571-.08-1.167-.08c-4.418 0-8 3.358-8 7.5s3.582 7.5 8 7.5q.595 0 1.167-.08" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.25, d: "M17.5 10H9.167m8.333 0c0-.583-1.662-1.674-2.084-2.083M17.5 10c0 .584-1.662 1.674-2.084 2.083" })] }));
|
|
2388
2412
|
|
|
2389
2413
|
const SvgMessageIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M4.228 15.076c-.28.189-.576.363-.88.53-.143.083-.287.174-.355.34-.16.402.06.781.523.872.901.197 1.81.326 2.742.31.66-.015 1.318-.09 1.924-.265" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M4.228 15.083a6.14 6.14 0 0 1-1.811-4.348V9.34a6.145 6.145 0 0 1 6.152-6.144h2.704a6.143 6.143 0 0 1 6.144 6.144v1.394a6.15 6.15 0 0 1-6.144 6.151H8.57c-.13 0-.258 0-.387-.015" }), jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M6.849 10.97a.81.81 0 1 0 0-1.622.81.81 0 0 0 0 1.621M9.917 10.97a.81.81 0 1 0 0-1.622.81.81 0 0 0 0 1.621M12.978 10.97a.81.81 0 1 0 0-1.622.81.81 0 0 0 0 1.621" })] }));
|
|
2390
2414
|
|
|
2391
2415
|
const SvgMoonHalfIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.25, d: "M17.917 11.732a7.131 7.131 0 0 1-9.649-9.649 8.022 8.022 0 1 0 9.649 9.649" })] }));
|
|
2392
2416
|
|
|
2417
|
+
const SvgMultilineIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M3 20S6.712 5.217 6.528 5.734c-.184.518 4.643 9.39 4.643 9.39L21 4" })] }));
|
|
2418
|
+
|
|
2393
2419
|
const SvgNewsFeedIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M15 12.5v-5c0-2.357 0-3.536-.732-4.268S12.358 2.5 10 2.5H6.667c-2.357 0-3.536 0-4.268.732S1.667 5.143 1.667 7.5v5c0 2.357 0 3.535.732 4.268s1.911.732 4.268.732h10M5 6.667h6.667M5 10h6.667M5 13.333h3.333" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M15 6.667h.833c1.179 0 1.768 0 2.134.366s.366.955.366 2.134v6.666a1.667 1.667 0 1 1-3.333 0z" })] }));
|
|
2394
2420
|
|
|
2395
2421
|
const SvgNoteIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M8.574 18.301h-.748c-2.707 0-4.061 0-4.902-.854s-.841-2.23-.841-4.98V8.302c0-2.75 0-4.125.841-4.979s2.195-.854 4.902-.854h2.46c2.708 0 4.29.046 5.13.9.841.854.834 2.183.834 4.933v.989M13.287 1.667v1.666M9.121 1.667v1.666M4.954 1.667v1.666" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M5.833 12.5h3.333M5.833 8.333H12.5" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeWidth: 1.5, d: "M17.3 12.399c-.755-.846-1.207-.795-1.71-.644-.352.05-1.56 1.459-2.063 1.908-.825.816-1.655 1.656-1.71 1.765-.156.254-.302.705-.372 1.208-.13.755-.32 1.604-.08 1.677.239.073.905-.067 1.66-.178.502-.09.854-.19 1.106-.342.352-.211 1.006-.956 2.133-2.063.706-.744 1.388-1.258 1.59-1.761.2-.755-.101-1.158-.554-1.57Z", opacity: 0.93 })] }));
|
|
@@ -2404,6 +2430,8 @@ const SvgPrintQueueIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.j
|
|
|
2404
2430
|
|
|
2405
2431
|
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" })] }));
|
|
2406
2432
|
|
|
2433
|
+
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" })] }));
|
|
2434
|
+
|
|
2407
2435
|
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" })] }));
|
|
2408
2436
|
|
|
2409
2437
|
const SvgShareitIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M4.77 14.82c-.14-.57-.21-1.17-.21-1.78 0-3.39 2.27-6.26 5.37-7.16M17.16 18.41A7.42 7.42 0 0 1 12 20.49c-2 0-3.82-.79-5.16-2.08M14.07 5.88c3.1.9 5.37 3.76 5.37 7.16 0 .61-.07 1.21-.21 1.78" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeMiterlimit: 10, strokeWidth: 2, d: "M13.08 3.51h-2.15a1 1 0 0 0-1 1v2.15a1 1 0 0 0 1 1h2.15a1 1 0 0 0 1-1V4.51a1 1 0 0 0-1-1ZM3.217 16.863l1.075 1.862a1 1 0 0 0 1.366.366l1.862-1.075a1 1 0 0 0 .366-1.366l-1.075-1.862a1 1 0 0 0-1.366-.366l-1.862 1.075a1 1 0 0 0-.366 1.366ZM19.703 18.729l1.075-1.863a1 1 0 0 0-.366-1.365l-1.862-1.075a1 1 0 0 0-1.366.365l-1.075 1.863a1 1 0 0 0 .366 1.366l1.862 1.075a1 1 0 0 0 1.366-.366Z" })] }));
|
|
@@ -2420,6 +2448,10 @@ const SvgSystemHubIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.js
|
|
|
2420
2448
|
|
|
2421
2449
|
const SvgTagIcon$1 = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsxs("g", { stroke: "currentColor", strokeWidth: 1.5, clipPath: "url(#tag-icon_svg__a)", children: [jsxRuntimeExports.jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M14.583 4.167a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5" }), jsxRuntimeExports.jsx("path", { d: "M2.312 9.287c-.836.933-.854 2.342-.087 3.333a28.3 28.3 0 0 0 5.156 5.155c.99.767 2.4.75 3.333-.087a77 77 0 0 0 7.096-7.248c.222-.258.36-.574.391-.912.138-1.496.42-5.807-.75-6.978-1.171-1.171-5.482-.888-6.979-.751-.338.031-.654.17-.912.391a77 77 0 0 0-7.248 7.097Z" }), jsxRuntimeExports.jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "m5.833 11.667 2.5 2.5" })] }), jsxRuntimeExports.jsx("defs", { children: jsxRuntimeExports.jsx("clipPath", { id: "tag-icon_svg__a", children: jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M0 0h20v20H0z" }) }) })] }));
|
|
2422
2450
|
|
|
2451
|
+
const SvgTargetBoardIcon = ({ 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: "M15.898 23.187c-3.96 0-7.187-3.227-7.187-7.187s3.227-7.187 7.187-7.187S23.084 12.04 23.084 16s-3.226 7.187-7.186 7.187" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M15.9 18.493a2.493 2.493 0 1 0 0-4.986 2.493 2.493 0 0 0 0 4.986" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M15.896 27.88c-6.547 0-11.88-5.333-11.88-11.88S9.349 4.12 15.896 4.12c6.546 0 11.88 5.333 11.88 11.88s-5.334 11.88-11.88 11.88" })] }));
|
|
2452
|
+
|
|
2453
|
+
const SvgTargetHalfIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 381 375", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 14, d: "M295.106 468.197c97.036 0 175.699-78.644 175.699-175.656 0-97.013-78.663-175.656-175.699-175.656s-175.7 78.643-175.7 175.656c0 97.012 78.664 175.656 175.7 175.656M73.875 292.531h95.269M295.406 73.875v95.187M295.211 259.272v66.516M328.503 292.531H261.93" })] }));
|
|
2454
|
+
|
|
2423
2455
|
const SvgTagIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { width: 24, height: 24, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: [jsxRuntimeExports.jsx("path", { d: "M22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22C17.5228 22 22 17.5228 22 12Z", fill: "url(#paint0_linear_26413_165696)", stroke: "url(#paint1_linear_26413_165696)", strokeWidth: 2 }), jsxRuntimeExports.jsx("path", { d: "M7.83936 12.6192L10.5557 15.0003L16.1517 8.9917", stroke: "white", strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round" }), jsxRuntimeExports.jsxs("defs", { children: [jsxRuntimeExports.jsxs("linearGradient", { id: "paint0_linear_26413_165696", x1: 6, y1: 4, x2: 25.5, y2: 43, gradientUnits: "userSpaceOnUse", children: [jsxRuntimeExports.jsx("stop", { stopColor: "currentColor" }), jsxRuntimeExports.jsx("stop", { offset: 1, stopColor: "white" })] }), jsxRuntimeExports.jsxs("linearGradient", { id: "paint1_linear_26413_165696", x1: 4.5, y1: -0.999999, x2: 38, y2: 53.5, gradientUnits: "userSpaceOnUse", children: [jsxRuntimeExports.jsx("stop", { stopColor: "currentColor" }), jsxRuntimeExports.jsx("stop", { offset: 1, stopColor: "white" })] })] })] }));
|
|
2424
2456
|
|
|
2425
2457
|
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" })] }));
|
|
@@ -2428,6 +2460,8 @@ const SvgUafoIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("s
|
|
|
2428
2460
|
|
|
2429
2461
|
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" })] }));
|
|
2430
2462
|
|
|
2463
|
+
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" })] }));
|
|
2464
|
+
|
|
2431
2465
|
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" })] }));
|
|
2432
2466
|
|
|
2433
2467
|
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" })] }));
|
|
@@ -2508,9 +2542,11 @@ exports.Box2Icon = SvgBox2Icon;
|
|
|
2508
2542
|
exports.Box3DAltIcon = SvgBox3DAltIcon;
|
|
2509
2543
|
exports.Box3DIcon = SvgBox3DIcon;
|
|
2510
2544
|
exports.BoxAxisIcon = SvgBoxAxisIcon;
|
|
2545
|
+
exports.BoxCrossIcon = SvgBoxCroseIcon;
|
|
2511
2546
|
exports.BoxIcon = BoxIcon;
|
|
2512
2547
|
exports.BroadcastIcon = SvgBroadcastIcon;
|
|
2513
2548
|
exports.BrushIcon = BrushIcon;
|
|
2549
|
+
exports.BugAltIcon = SvgBugAltIcon;
|
|
2514
2550
|
exports.BugIcon = BugIcon;
|
|
2515
2551
|
exports.BusIcon = SvgBusIcon;
|
|
2516
2552
|
exports.CADDirectIcon = SvgCADDirectIcon;
|
|
@@ -2522,6 +2558,7 @@ exports.CenterOutlineIcon = CenterOutlineIcon;
|
|
|
2522
2558
|
exports.ChatBubbleIcon = ChatBubbleIcon;
|
|
2523
2559
|
exports.CheckBoxCheckedIcon = CheckBoxCheckedIcon;
|
|
2524
2560
|
exports.CheckBoxUncheckedIcon = CheckBoxUncheckedIcon;
|
|
2561
|
+
exports.CheckCircleAltIcon = SvgCheckCircleAltIcon;
|
|
2525
2562
|
exports.CheckCircleFillIcon = SvgCheckCircleFillIcon;
|
|
2526
2563
|
exports.ChevronDownIcon = SvgChevronDownIcon;
|
|
2527
2564
|
exports.ChevronForwardIcon = ChevronForwardIcon;
|
|
@@ -2540,6 +2577,7 @@ exports.CircleQuestionFillIcon = CircleQuestionFillIcon;
|
|
|
2540
2577
|
exports.CircleRingShapeIcon = CircleRingShapeIcon;
|
|
2541
2578
|
exports.CleanSketchIcon = SvgCleanSketchIcon;
|
|
2542
2579
|
exports.ClockIcon = SvgClockIcon;
|
|
2580
|
+
exports.ClockProgressIcon = SvgClockProgressIcon;
|
|
2543
2581
|
exports.CloneComponentIcon = SvgCloneComponentIcon;
|
|
2544
2582
|
exports.CloseIcon = CloseIcon;
|
|
2545
2583
|
exports.CloseThinIcon = SvgCloseThinIcon;
|
|
@@ -2593,6 +2631,7 @@ exports.DeveloperModeTvIcon = DeveloperModeTvIcon;
|
|
|
2593
2631
|
exports.DeviceHubIcon = DeviceHubIcon;
|
|
2594
2632
|
exports.DifferentialPairIcon = SvgDifferentialPairIcon;
|
|
2595
2633
|
exports.DifferentialRoutingIcon = SvgDifferentialRoutingIcon;
|
|
2634
|
+
exports.DimondIcon = SvgDimondIcon;
|
|
2596
2635
|
exports.DisperceIcon = SvgDisperceIcon;
|
|
2597
2636
|
exports.DisplayConfigurationIcon = SvgDisplayConfigurationIcon;
|
|
2598
2637
|
exports.DistanceBetween2PointRightIcon = SvgDistanceBetween2PointRightIcon;
|
|
@@ -2630,9 +2669,11 @@ exports.ExtrudeAltIcon = SvgExtrudeAltIcon;
|
|
|
2630
2669
|
exports.ExtrudeIcon = SvgExtrudeIcon;
|
|
2631
2670
|
exports.EyeIcon = EyeIcon;
|
|
2632
2671
|
exports.EyeOffIcon = SvgEyeOffIcon;
|
|
2672
|
+
exports.FacebookAltIcon = SvgFacebookAltIcon;
|
|
2633
2673
|
exports.FacebookIcon = FacebookIcon;
|
|
2634
2674
|
exports.FanOutIcon = SvgFanOutIcon;
|
|
2635
2675
|
exports.FastenerSystemIcon = SvgFastenerSystemIcon;
|
|
2676
|
+
exports.FasterIcon = SvgFasterIcon;
|
|
2636
2677
|
exports.FileAltIcon = SvgFileAltIcon;
|
|
2637
2678
|
exports.FileBlankIcon = FileBlankIcon;
|
|
2638
2679
|
exports.FileDownloadIcon = SvgFileDownloadIcon;
|
|
@@ -2644,6 +2685,7 @@ exports.Fillet3DIcon = SvgFillet3DIcon;
|
|
|
2644
2685
|
exports.FilletAltIcon = SvgFilletAltIcon;
|
|
2645
2686
|
exports.FilletIcon = SvgFilletIcon;
|
|
2646
2687
|
exports.FlagIcon = FlagIcon;
|
|
2688
|
+
exports.FlameIcon = SvgFlameIcon;
|
|
2647
2689
|
exports.FlipHorizontalIcon = FlipHorizontalIcon;
|
|
2648
2690
|
exports.FlipVerticalIcon = FlipVerticalIcon;
|
|
2649
2691
|
exports.FolderAltIcon = SvgFolderIcon;
|
|
@@ -2651,6 +2693,7 @@ exports.FolderExportIcon = SvgFolderExportIcon;
|
|
|
2651
2693
|
exports.FolderIcon = SvgFolderIcon$1;
|
|
2652
2694
|
exports.FolderOutlineIcon = FolderOutlineIcon;
|
|
2653
2695
|
exports.FolderProtectedIcon = FolderProtectedIcon;
|
|
2696
|
+
exports.FormIcon = SvgFormIcon;
|
|
2654
2697
|
exports.ForwordIcon = ForwordIcon;
|
|
2655
2698
|
exports.FrameIcon = SvgFrameIcon;
|
|
2656
2699
|
exports.FrameOriginIcon = SvgFrameOriginIcon;
|
|
@@ -2705,9 +2748,11 @@ exports.LineIcon = SvgLineIcon;
|
|
|
2705
2748
|
exports.LinearPatternIcon = SvgLinearPatternIcon;
|
|
2706
2749
|
exports.LinkAltIcon = SvgLinkAltIcon;
|
|
2707
2750
|
exports.LinkIcon = LinkIcon;
|
|
2751
|
+
exports.LinkedInAltIcon = SvgLinkedinAltIcon;
|
|
2708
2752
|
exports.LinkedInIcon = LinkedInIcon;
|
|
2709
2753
|
exports.ListBulletedIcon = ListBulletedIcon;
|
|
2710
2754
|
exports.LocationOutlineIcon = LocationOutlineIcon;
|
|
2755
|
+
exports.LockAltIcon = LockAltIcon;
|
|
2711
2756
|
exports.LockIcon = LockIcon;
|
|
2712
2757
|
exports.LoftIcon = SvgLoftIcon;
|
|
2713
2758
|
exports.LogoutAltIcon = LogoutAltIcon;
|
|
@@ -2741,6 +2786,7 @@ exports.MoveComponentIcon = SvgMoveComponentIcon;
|
|
|
2741
2786
|
exports.MoveIcon = SvgMoveIcon;
|
|
2742
2787
|
exports.MovieIcon = MovieIcon;
|
|
2743
2788
|
exports.MultiLineIcon = SvgMultiLineIcon;
|
|
2789
|
+
exports.MultilineIcon = SvgMultilineIcon;
|
|
2744
2790
|
exports.MultipleAirwireIcon = SvgMultipleAirwireIcon;
|
|
2745
2791
|
exports.NavArrowRightIcon = SvgNavArrowRight;
|
|
2746
2792
|
exports.NetLabelIcon = SvgNetLabelIcon;
|
|
@@ -2855,6 +2901,7 @@ exports.SelectLasoIcon = SelectLasoIcon;
|
|
|
2855
2901
|
exports.SelectVisiblePartIcon = SelectVisiblePartIcon;
|
|
2856
2902
|
exports.SendAltIcon = SendAltIcon;
|
|
2857
2903
|
exports.SendIcon = SendIcon;
|
|
2904
|
+
exports.SendUpIcon = SvgSendUpIcon;
|
|
2858
2905
|
exports.SettingIcon = SettingIcon;
|
|
2859
2906
|
exports.SettingOutlineIcon = SvgSettingOutlineIcon;
|
|
2860
2907
|
exports.SettingsApplicationIcon = SettingsApplicationIcon;
|
|
@@ -2899,6 +2946,8 @@ exports.TakeScreenshotIcon = SvgTakeScreenshotIcon;
|
|
|
2899
2946
|
exports.TangentArcIcon = SvgTangentArcIcon;
|
|
2900
2947
|
exports.TangentCircleIcon = SvgTangentCircleIcon;
|
|
2901
2948
|
exports.TangentIcon = SvgTangentIcon;
|
|
2949
|
+
exports.TargetBoardIcon = SvgTargetBoardIcon;
|
|
2950
|
+
exports.TargetHalfIcon = SvgTargetHalfIcon;
|
|
2902
2951
|
exports.TearOffSketchAltIcon = SvgTearOffSketchAltIcon;
|
|
2903
2952
|
exports.TearOffSketchIcon = SvgTearOffSketchIcon;
|
|
2904
2953
|
exports.TextAltIcon = SvgTextAltIcon;
|
|
@@ -2935,6 +2984,7 @@ exports.UafoIcon = SvgUafoIcon;
|
|
|
2935
2984
|
exports.UndoIcon = UndoIcon;
|
|
2936
2985
|
exports.UnionIcon = SvgUnionIcon;
|
|
2937
2986
|
exports.UnlockIcon = SvgUnlockIcon;
|
|
2987
|
+
exports.UploadAltIcon = SvgUploadAltIcon;
|
|
2938
2988
|
exports.UploadIcon = UploadIcon;
|
|
2939
2989
|
exports.UserCaptureAltIcon = SvgUserCaptureIcon;
|
|
2940
2990
|
exports.UserCaptureIcon = UserCaptureIcon;
|
|
@@ -2959,6 +3009,7 @@ exports.WarningFillIcon = WarningFillIcon;
|
|
|
2959
3009
|
exports.WarningIcon = WarningIcon;
|
|
2960
3010
|
exports.WarningOutlineIcon = SvgWarningOutlineIcon;
|
|
2961
3011
|
exports.WireNodeIcon = SvgWireNodeIcon;
|
|
3012
|
+
exports.XIcon = SvgXIcon;
|
|
2962
3013
|
exports.XYKeyInIcon = SvgXYKeyInIcon;
|
|
2963
3014
|
exports.ZeroOriginIcon = SvgZeroOriginIcon;
|
|
2964
3015
|
exports.ZoomInAltIcon = SvgZoomInAltIcon;
|