@ideeza/icons 2.0.6 → 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/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/index.d.ts +13 -0
- package/dist/index.cjs +39 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.esm.js +27 -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 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;
|
|
@@ -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,6 +42,8 @@ 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";
|
package/dist/index.cjs
CHANGED
|
@@ -2366,36 +2366,56 @@ const SvgArrowLeftThinIcon = ({ title, titleId, ...props }) => (jsxRuntimeExport
|
|
|
2366
2366
|
|
|
2367
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" })] }));
|
|
2368
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
|
+
|
|
2369
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" })] }));
|
|
2370
2372
|
|
|
2371
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" })] }));
|
|
2372
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
|
+
|
|
2373
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" })] }));
|
|
2374
2378
|
|
|
2375
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" })] }));
|
|
2376
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
|
+
|
|
2377
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" })] }));
|
|
2378
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
|
+
|
|
2379
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" }) }) })] }));
|
|
2380
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
|
+
|
|
2381
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" })] }));
|
|
2382
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
|
+
|
|
2383
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" })] })] })] }));
|
|
2384
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
|
+
|
|
2385
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" })] }));
|
|
2386
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
|
+
|
|
2387
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" })] }));
|
|
2388
2404
|
|
|
2389
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" })] }));
|
|
2390
2406
|
|
|
2391
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" })] }));
|
|
2392
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
|
+
|
|
2393
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" })] }));
|
|
2394
2412
|
|
|
2395
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" })] }));
|
|
2396
2414
|
|
|
2397
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" })] }));
|
|
2398
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
|
+
|
|
2399
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" })] }));
|
|
2400
2420
|
|
|
2401
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 })] }));
|
|
@@ -2410,6 +2430,8 @@ const SvgPrintQueueIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.j
|
|
|
2410
2430
|
|
|
2411
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" })] }));
|
|
2412
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
|
+
|
|
2413
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" })] }));
|
|
2414
2436
|
|
|
2415
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" })] }));
|
|
@@ -2426,6 +2448,10 @@ const SvgSystemHubIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.js
|
|
|
2426
2448
|
|
|
2427
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" }) }) })] }));
|
|
2428
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
|
+
|
|
2429
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" })] })] })] }));
|
|
2430
2456
|
|
|
2431
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" })] }));
|
|
@@ -2516,9 +2542,11 @@ exports.Box2Icon = SvgBox2Icon;
|
|
|
2516
2542
|
exports.Box3DAltIcon = SvgBox3DAltIcon;
|
|
2517
2543
|
exports.Box3DIcon = SvgBox3DIcon;
|
|
2518
2544
|
exports.BoxAxisIcon = SvgBoxAxisIcon;
|
|
2545
|
+
exports.BoxCrossIcon = SvgBoxCroseIcon;
|
|
2519
2546
|
exports.BoxIcon = BoxIcon;
|
|
2520
2547
|
exports.BroadcastIcon = SvgBroadcastIcon;
|
|
2521
2548
|
exports.BrushIcon = BrushIcon;
|
|
2549
|
+
exports.BugAltIcon = SvgBugAltIcon;
|
|
2522
2550
|
exports.BugIcon = BugIcon;
|
|
2523
2551
|
exports.BusIcon = SvgBusIcon;
|
|
2524
2552
|
exports.CADDirectIcon = SvgCADDirectIcon;
|
|
@@ -2530,6 +2558,7 @@ exports.CenterOutlineIcon = CenterOutlineIcon;
|
|
|
2530
2558
|
exports.ChatBubbleIcon = ChatBubbleIcon;
|
|
2531
2559
|
exports.CheckBoxCheckedIcon = CheckBoxCheckedIcon;
|
|
2532
2560
|
exports.CheckBoxUncheckedIcon = CheckBoxUncheckedIcon;
|
|
2561
|
+
exports.CheckCircleAltIcon = SvgCheckCircleAltIcon;
|
|
2533
2562
|
exports.CheckCircleFillIcon = SvgCheckCircleFillIcon;
|
|
2534
2563
|
exports.ChevronDownIcon = SvgChevronDownIcon;
|
|
2535
2564
|
exports.ChevronForwardIcon = ChevronForwardIcon;
|
|
@@ -2548,6 +2577,7 @@ exports.CircleQuestionFillIcon = CircleQuestionFillIcon;
|
|
|
2548
2577
|
exports.CircleRingShapeIcon = CircleRingShapeIcon;
|
|
2549
2578
|
exports.CleanSketchIcon = SvgCleanSketchIcon;
|
|
2550
2579
|
exports.ClockIcon = SvgClockIcon;
|
|
2580
|
+
exports.ClockProgressIcon = SvgClockProgressIcon;
|
|
2551
2581
|
exports.CloneComponentIcon = SvgCloneComponentIcon;
|
|
2552
2582
|
exports.CloseIcon = CloseIcon;
|
|
2553
2583
|
exports.CloseThinIcon = SvgCloseThinIcon;
|
|
@@ -2601,6 +2631,7 @@ exports.DeveloperModeTvIcon = DeveloperModeTvIcon;
|
|
|
2601
2631
|
exports.DeviceHubIcon = DeviceHubIcon;
|
|
2602
2632
|
exports.DifferentialPairIcon = SvgDifferentialPairIcon;
|
|
2603
2633
|
exports.DifferentialRoutingIcon = SvgDifferentialRoutingIcon;
|
|
2634
|
+
exports.DimondIcon = SvgDimondIcon;
|
|
2604
2635
|
exports.DisperceIcon = SvgDisperceIcon;
|
|
2605
2636
|
exports.DisplayConfigurationIcon = SvgDisplayConfigurationIcon;
|
|
2606
2637
|
exports.DistanceBetween2PointRightIcon = SvgDistanceBetween2PointRightIcon;
|
|
@@ -2642,6 +2673,7 @@ exports.FacebookAltIcon = SvgFacebookAltIcon;
|
|
|
2642
2673
|
exports.FacebookIcon = FacebookIcon;
|
|
2643
2674
|
exports.FanOutIcon = SvgFanOutIcon;
|
|
2644
2675
|
exports.FastenerSystemIcon = SvgFastenerSystemIcon;
|
|
2676
|
+
exports.FasterIcon = SvgFasterIcon;
|
|
2645
2677
|
exports.FileAltIcon = SvgFileAltIcon;
|
|
2646
2678
|
exports.FileBlankIcon = FileBlankIcon;
|
|
2647
2679
|
exports.FileDownloadIcon = SvgFileDownloadIcon;
|
|
@@ -2653,6 +2685,7 @@ exports.Fillet3DIcon = SvgFillet3DIcon;
|
|
|
2653
2685
|
exports.FilletAltIcon = SvgFilletAltIcon;
|
|
2654
2686
|
exports.FilletIcon = SvgFilletIcon;
|
|
2655
2687
|
exports.FlagIcon = FlagIcon;
|
|
2688
|
+
exports.FlameIcon = SvgFlameIcon;
|
|
2656
2689
|
exports.FlipHorizontalIcon = FlipHorizontalIcon;
|
|
2657
2690
|
exports.FlipVerticalIcon = FlipVerticalIcon;
|
|
2658
2691
|
exports.FolderAltIcon = SvgFolderIcon;
|
|
@@ -2660,6 +2693,7 @@ exports.FolderExportIcon = SvgFolderExportIcon;
|
|
|
2660
2693
|
exports.FolderIcon = SvgFolderIcon$1;
|
|
2661
2694
|
exports.FolderOutlineIcon = FolderOutlineIcon;
|
|
2662
2695
|
exports.FolderProtectedIcon = FolderProtectedIcon;
|
|
2696
|
+
exports.FormIcon = SvgFormIcon;
|
|
2663
2697
|
exports.ForwordIcon = ForwordIcon;
|
|
2664
2698
|
exports.FrameIcon = SvgFrameIcon;
|
|
2665
2699
|
exports.FrameOriginIcon = SvgFrameOriginIcon;
|
|
@@ -2718,6 +2752,7 @@ exports.LinkedInAltIcon = SvgLinkedinAltIcon;
|
|
|
2718
2752
|
exports.LinkedInIcon = LinkedInIcon;
|
|
2719
2753
|
exports.ListBulletedIcon = ListBulletedIcon;
|
|
2720
2754
|
exports.LocationOutlineIcon = LocationOutlineIcon;
|
|
2755
|
+
exports.LockAltIcon = LockAltIcon;
|
|
2721
2756
|
exports.LockIcon = LockIcon;
|
|
2722
2757
|
exports.LoftIcon = SvgLoftIcon;
|
|
2723
2758
|
exports.LogoutAltIcon = LogoutAltIcon;
|
|
@@ -2751,6 +2786,7 @@ exports.MoveComponentIcon = SvgMoveComponentIcon;
|
|
|
2751
2786
|
exports.MoveIcon = SvgMoveIcon;
|
|
2752
2787
|
exports.MovieIcon = MovieIcon;
|
|
2753
2788
|
exports.MultiLineIcon = SvgMultiLineIcon;
|
|
2789
|
+
exports.MultilineIcon = SvgMultilineIcon;
|
|
2754
2790
|
exports.MultipleAirwireIcon = SvgMultipleAirwireIcon;
|
|
2755
2791
|
exports.NavArrowRightIcon = SvgNavArrowRight;
|
|
2756
2792
|
exports.NetLabelIcon = SvgNetLabelIcon;
|
|
@@ -2865,6 +2901,7 @@ exports.SelectLasoIcon = SelectLasoIcon;
|
|
|
2865
2901
|
exports.SelectVisiblePartIcon = SelectVisiblePartIcon;
|
|
2866
2902
|
exports.SendAltIcon = SendAltIcon;
|
|
2867
2903
|
exports.SendIcon = SendIcon;
|
|
2904
|
+
exports.SendUpIcon = SvgSendUpIcon;
|
|
2868
2905
|
exports.SettingIcon = SettingIcon;
|
|
2869
2906
|
exports.SettingOutlineIcon = SvgSettingOutlineIcon;
|
|
2870
2907
|
exports.SettingsApplicationIcon = SettingsApplicationIcon;
|
|
@@ -2909,6 +2946,8 @@ exports.TakeScreenshotIcon = SvgTakeScreenshotIcon;
|
|
|
2909
2946
|
exports.TangentArcIcon = SvgTangentArcIcon;
|
|
2910
2947
|
exports.TangentCircleIcon = SvgTangentCircleIcon;
|
|
2911
2948
|
exports.TangentIcon = SvgTangentIcon;
|
|
2949
|
+
exports.TargetBoardIcon = SvgTargetBoardIcon;
|
|
2950
|
+
exports.TargetHalfIcon = SvgTargetHalfIcon;
|
|
2912
2951
|
exports.TearOffSketchAltIcon = SvgTearOffSketchAltIcon;
|
|
2913
2952
|
exports.TearOffSketchIcon = SvgTearOffSketchIcon;
|
|
2914
2953
|
exports.TextAltIcon = SvgTextAltIcon;
|