@ideeza/icons 2.0.7 → 2.0.9
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/social/MediumIcon.d.ts +7 -0
- package/dist/icons/social/index.d.ts +1 -0
- package/dist/icons/v2/general/BoxMinusIcon.d.ts +7 -0
- package/dist/icons/v2/general/CheckBoxFillIcon.d.ts +7 -0
- package/dist/icons/v2/general/EmptyBoxIcon.d.ts +7 -0
- package/dist/icons/v2/general/MailCheckIcon.d.ts +7 -0
- package/dist/icons/v2/general/PrinterIcon.d.ts +7 -0
- package/dist/icons/v2/general/index.d.ts +5 -0
- package/dist/index.cjs +18 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.esm.js +13 -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 SvgMediumIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgMediumIcon;
|
|
@@ -3,6 +3,7 @@ export { default as FacebookIcon } from "./FacebookIcon";
|
|
|
3
3
|
export { default as InstagramIcon } from "./InstagramIcon";
|
|
4
4
|
export { default as LinkedInAltIcon } from "./LinkedinAltIcon";
|
|
5
5
|
export { default as LinkedInIcon } from "./LinkedInIcon";
|
|
6
|
+
export { default as MediumIcon } from "./MediumIcon";
|
|
6
7
|
export { default as ShareAltIcon } from "./ShareAltIcon";
|
|
7
8
|
export { default as ShareIcon } from "./ShareIcon";
|
|
8
9
|
export { default as TwitterIcon } from "./TwitterIcon";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgBoxMinusIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgBoxMinusIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgCheckBoxFillIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgCheckBoxFillIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgEmptyBoxIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgEmptyBoxIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgMailCheckIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgMailCheckIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgPrinterIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgPrinterIcon;
|
|
@@ -2,17 +2,20 @@ export { default as ArrowDownRightIcon } from "./ArrowDownRightIcon";
|
|
|
2
2
|
export { default as ArrowLeftThinIcon } from "./ArrowLeftThinIcon";
|
|
3
3
|
export { default as ArrowUpRightIcon } from "./ArrowUpRightIcon";
|
|
4
4
|
export { default as BoxCrossIcon } from "./BoxCroseIcon";
|
|
5
|
+
export { default as BoxMinusIcons } from "./BoxMinusIcon";
|
|
5
6
|
export { default as BlogIcon } from "./BlogIcon";
|
|
6
7
|
export { default as BroadcastIcon } from "./BroadcastIcon";
|
|
7
8
|
export { default as BugAltIcon } from "./BugAltIcon";
|
|
8
9
|
export { default as CalendarOutlineIcon } from "./CalendarOutlineIcon";
|
|
9
10
|
export { default as CameraIcon } from "./CameraIcon";
|
|
11
|
+
export { default as CheckBoxFill } from "./CheckBoxFillIcon";
|
|
10
12
|
export { default as CheckCircleAltIcon } from "./CheckCircleAltIcon";
|
|
11
13
|
export { default as CheckCircleFillIcon } from "./CheckCircleFillIcon";
|
|
12
14
|
export { default as ClockProgressIcon } from "./ClockProgressIcon";
|
|
13
15
|
export { default as DashboardMenuIcon } from "./DashboardMenuIcon";
|
|
14
16
|
export { default as DimondIcon } from "./DimondIcon";
|
|
15
17
|
export { default as DollarCircleIcon } from "./DollarCircleIcon";
|
|
18
|
+
export { default as EmptyBoxIcon } from "./EmptyBoxIcon";
|
|
16
19
|
export { default as FasterIcon } from "./FasterIcon";
|
|
17
20
|
export { default as FileFolderIcon } from "./FileFolderIcon";
|
|
18
21
|
export { default as FlameIcon } from "./FlameIcon";
|
|
@@ -23,6 +26,7 @@ export { default as KeyboardCurveRightArrowIcon } from "./KeyboardCurveRightArro
|
|
|
23
26
|
export { default as KeyboardCurveUptArrowIcon } from "./KeyboardCurveUpIcon";
|
|
24
27
|
export { default as LockAltIcon } from "./LockAltIcon";
|
|
25
28
|
export { default as LogoutCurveIcon } from "./LogoutCurveIcon";
|
|
29
|
+
export { default as MailCheckIcon } from "./MailCheckIcon";
|
|
26
30
|
export { default as MessageIcon } from "./MessageIcon";
|
|
27
31
|
export { default as MoonHalfIcon } from "./MoonHalfIcon";
|
|
28
32
|
export { default as MultilineIcon } from "./MultilineIcon";
|
|
@@ -31,6 +35,7 @@ export { default as NoteIcon } from "./NoteIcon";
|
|
|
31
35
|
export { default as PartsIcon } from "./PartsIcon";
|
|
32
36
|
export { default as PawStationIcon } from "./PawStationIcon";
|
|
33
37
|
export { default as PayRollIcon } from "./PayRollIcon";
|
|
38
|
+
export { default as PrinterIcon } from "./PrinterIcon";
|
|
34
39
|
export { default as PrintQueueIcon } from "./PrintQueueIcon";
|
|
35
40
|
export { default as ReferAltIcon } from "./ReferAltIcon";
|
|
36
41
|
export { default as SendUpIcon } from "./SendUpIcon";
|
package/dist/index.cjs
CHANGED
|
@@ -2352,6 +2352,8 @@ const SvgLinkedinAltIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.
|
|
|
2352
2352
|
|
|
2353
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" })] }));
|
|
2354
2354
|
|
|
2355
|
+
const SvgMediumIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 25 25", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsxs("g", { fill: "currentColor", clipPath: "url(#medium-icon_svg__a)", children: [jsxRuntimeExports.jsx("path", { d: "M14.007 12.696c0 3.209-2.583 5.81-5.77 5.81s-5.77-2.601-5.77-5.81 2.583-5.81 5.77-5.81 5.77 2.602 5.77 5.81" }), jsxRuntimeExports.jsx("path", { stroke: "#27BE69", strokeWidth: 0.047, d: "M17.451 7.251c.784 0 1.5.602 2.02 1.589.52.985.841 2.35.841 3.856 0 1.507-.321 2.871-.841 3.857s-1.236 1.589-2.02 1.589c-.783 0-1.498-.603-2.018-1.59-.52-.985-.843-2.349-.843-3.856s.323-2.87.843-3.856S16.668 7.25 17.45 7.25ZM21.911 7.82q.093 0 .189.093.095.095.185.28c.12.245.229.601.32 1.043.184.885.297 2.108.297 3.46s-.113 2.576-.297 3.46c-.091.443-.2.8-.32 1.045q-.09.185-.185.28-.096.093-.189.092-.093 0-.188-.093a1 1 0 0 1-.186-.279c-.12-.245-.229-.602-.32-1.045-.183-.884-.297-2.108-.297-3.46s.114-2.575.297-3.46c.091-.442.2-.798.32-1.044q.09-.184.186-.279.095-.094.188-.093Z" })] }), jsxRuntimeExports.jsx("defs", { children: jsxRuntimeExports.jsx("clipPath", { id: "medium-icon_svg__a", children: jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M2.467 2.467h20.459v20.459H2.466z" }) }) })] }));
|
|
2356
|
+
|
|
2355
2357
|
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" })] }));
|
|
2356
2358
|
|
|
2357
2359
|
const ShareIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 18 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M15 20a2.9 2.9 0 0 1-2.125-.875A2.9 2.9 0 0 1 12 17q0-.175.025-.363.025-.187.075-.337l-7.05-4.1q-.425.375-.95.588T3 13a2.9 2.9 0 0 1-2.125-.875A2.9 2.9 0 0 1 0 10q0-1.25.875-2.125A2.9 2.9 0 0 1 3 7q.575 0 1.1.213.525.212.95.587l7.05-4.1a2 2 0 0 1-.075-.338A3 3 0 0 1 12 3q0-1.25.875-2.125A2.9 2.9 0 0 1 15 0q1.25 0 2.125.875T18 3t-.875 2.125A2.9 2.9 0 0 1 15 6q-.575 0-1.1-.213a3.3 3.3 0 0 1-.95-.587L5.9 9.3q.05.15.075.337a2.7 2.7 0 0 1 0 .726 2 2 0 0 1-.075.337l7.05 4.1q.425-.375.95-.588T15 14q1.25 0 2.125.875T18 17t-.875 2.125A2.9 2.9 0 0 1 15 20m0-16q.424 0 .713-.288A.97.97 0 0 0 16 3a.97.97 0 0 0-.287-.712A.97.97 0 0 0 15 2a.97.97 0 0 0-.713.288A.97.97 0 0 0 14 3q0 .424.287.712Q14.576 4 15 4M3 11q.424 0 .712-.287A.97.97 0 0 0 4 10a.97.97 0 0 0-.288-.713A.97.97 0 0 0 3 9a.97.97 0 0 0-.712.287A.97.97 0 0 0 2 10q0 .424.288.713Q2.575 11 3 11m12 7q.424 0 .713-.288A.97.97 0 0 0 16 17a.97.97 0 0 0-.287-.712A.97.97 0 0 0 15 16a.97.97 0 0 0-.713.288A.97.97 0 0 0 14 17q0 .424.287.712.288.288.713.288" })] }));
|
|
@@ -2368,6 +2370,8 @@ const SvgArrowUpRightIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports
|
|
|
2368
2370
|
|
|
2369
2371
|
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
2372
|
|
|
2373
|
+
const SvgBoxMinusIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 27 25", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsxs("g", { filter: "url(#box-minus-icon_svg__a)", children: [jsxRuntimeExports.jsx("path", { stroke: "currentColor", d: "M7.5 2.5h12A3.5 3.5 0 0 1 23 6v11a3.5 3.5 0 0 1-3.5 3.5h-12A3.5 3.5 0 0 1 4 17V6a3.5 3.5 0 0 1 3.5-3.5Z" }), jsxRuntimeExports.jsx("g", { clipPath: "url(#box-minus-icon_svg__b)", children: jsxRuntimeExports.jsx("rect", { width: 12, height: 2.5, x: 7.5, y: 10, fill: "currentColor", rx: 1.25 }) })] }), jsxRuntimeExports.jsxs("defs", { children: [jsxRuntimeExports.jsx("clipPath", { id: "box-minus-icon_svg__b", children: jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M7.5 10h12v3h-12z" }) }), jsxRuntimeExports.jsxs("filter", { id: "box-minus-icon_svg__a", width: 26, height: 25, x: 0.5, y: 0, colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse", children: [jsxRuntimeExports.jsx("feFlood", { floodOpacity: 0, result: "BackgroundImageFix" }), jsxRuntimeExports.jsx("feColorMatrix", { in: "SourceAlpha", result: "hardAlpha", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" }), jsxRuntimeExports.jsx("feOffset", { dy: 1 }), jsxRuntimeExports.jsx("feGaussianBlur", { stdDeviation: 1.5 }), jsxRuntimeExports.jsx("feColorMatrix", { values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0" }), jsxRuntimeExports.jsx("feBlend", { in2: "BackgroundImageFix", result: "effect1_dropShadow_9559_128452" }), jsxRuntimeExports.jsx("feBlend", { in: "SourceGraphic", in2: "effect1_dropShadow_9559_128452", result: "shape" })] })] })] }));
|
|
2374
|
+
|
|
2371
2375
|
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" })] }));
|
|
2372
2376
|
|
|
2373
2377
|
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" })] }));
|
|
@@ -2378,6 +2382,8 @@ const SvgCalendarOutlineIcon = ({ title, titleId, ...props }) => (jsxRuntimeExpo
|
|
|
2378
2382
|
|
|
2379
2383
|
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" })] }));
|
|
2380
2384
|
|
|
2385
|
+
const SvgCheckBoxFillIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 21 21", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M.5 4.5a4 4 0 0 1 4-4h12a4 4 0 0 1 4 4v12a4 4 0 0 1-4 4h-12a4 4 0 0 1-4-4z" }), jsxRuntimeExports.jsx("g", { clipPath: "url(#check-box-fill-icon_svg__a)", filter: "url(#check-box-fill-icon_svg__b)", children: jsxRuntimeExports.jsx("path", { fill: "white", fillRule: "evenodd", d: "m8.438 12.222 5.391-5.392a1.125 1.125 0 0 1 1.592 1.59l-6.188 6.188c-.44.44-1.152.44-1.591 0L4.83 11.796a1.125 1.125 0 0 1 1.59-1.591z", clipRule: "evenodd" }) }), jsxRuntimeExports.jsxs("defs", { children: [jsxRuntimeExports.jsx("clipPath", { id: "check-box-fill-icon_svg__a", children: jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M4.5 4.5h12v12h-12z" }) }), jsxRuntimeExports.jsxs("filter", { id: "check-box-fill-icon_svg__b", width: 11.25, height: 8.938, x: 4.5, y: 6.5, colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse", children: [jsxRuntimeExports.jsx("feFlood", { floodOpacity: 0, result: "BackgroundImageFix" }), jsxRuntimeExports.jsx("feColorMatrix", { in: "SourceAlpha", result: "hardAlpha", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" }), jsxRuntimeExports.jsx("feOffset", { dy: 0.5 }), jsxRuntimeExports.jsx("feComposite", { in2: "hardAlpha", operator: "out" }), jsxRuntimeExports.jsx("feColorMatrix", { values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.15 0" }), jsxRuntimeExports.jsx("feBlend", { in2: "BackgroundImageFix", result: "effect1_dropShadow_9123_66660" }), jsxRuntimeExports.jsx("feBlend", { in: "SourceGraphic", in2: "effect1_dropShadow_9123_66660", result: "shape" })] })] })] }));
|
|
2386
|
+
|
|
2381
2387
|
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
2388
|
|
|
2383
2389
|
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" })] }));
|
|
@@ -2390,6 +2396,8 @@ const SvgDimondIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs(
|
|
|
2390
2396
|
|
|
2391
2397
|
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" })] }));
|
|
2392
2398
|
|
|
2399
|
+
const SvgEmptyBoxIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 21 21", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsxs("g", { clipPath: "url(#empty-box-icon_svg__a)", children: [jsxRuntimeExports.jsx("path", { d: "M.5 4.5a4 4 0 0 1 4-4h12a4 4 0 0 1 4 4v12a4 4 0 0 1-4 4h-12a4 4 0 0 1-4-4z" }), jsxRuntimeExports.jsx("path", { d: "M4.5 1h12A3.5 3.5 0 0 1 20 4.5v12a3.5 3.5 0 0 1-3.5 3.5h-12A3.5 3.5 0 0 1 1 16.5v-12A3.5 3.5 0 0 1 4.5 1" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", d: "M4.5 1h12A3.5 3.5 0 0 1 20 4.5v12a3.5 3.5 0 0 1-3.5 3.5h-12A3.5 3.5 0 0 1 1 16.5v-12A3.5 3.5 0 0 1 4.5 1Z" })] }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", d: "M4.5 1h12A3.5 3.5 0 0 1 20 4.5v12a3.5 3.5 0 0 1-3.5 3.5h-12A3.5 3.5 0 0 1 1 16.5v-12A3.5 3.5 0 0 1 4.5 1Z" }), jsxRuntimeExports.jsx("defs", { children: jsxRuntimeExports.jsx("clipPath", { id: "empty-box-icon_svg__a", children: jsxRuntimeExports.jsx("path", { d: "M.5 4.5a4 4 0 0 1 4-4h12a4 4 0 0 1 4 4v12a4 4 0 0 1-4 4h-12a4 4 0 0 1-4-4z" }) }) })] }));
|
|
2400
|
+
|
|
2393
2401
|
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
2402
|
|
|
2395
2403
|
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" })] })] })] }));
|
|
@@ -2410,6 +2418,8 @@ const LockAltIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("s
|
|
|
2410
2418
|
|
|
2411
2419
|
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" })] }));
|
|
2412
2420
|
|
|
2421
|
+
const SvgMailCheckIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 25 25", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M7.885 7.885 10.6 9.49c1.584.937 2.216.937 3.8 0l2.715-1.605" }), jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "m9.825 3.303.02.75zM3.284 9.768l.75.016zm11.9-6.465.02-.75zm6.542 6.465.75-.016zm-11.92 9.944a.75.75 0 0 0 .038-1.5l-.019.75zm-6.522-7.214.75-.016zm17.692-1.376a.75.75 0 0 0 1.5.02l-.75-.01zM9.826 3.303l.018.75c1.78-.045 3.542-.045 5.321 0l.02-.75.018-.75a107 107 0 0 0-5.396 0zM3.283 9.768l-.75-.016c-.02.922-.02 1.84 0 2.762l.75-.016.75-.016c-.02-.901-.02-1.797 0-2.698zm6.541-6.465-.018-.75c-1.432.037-2.587.064-3.512.225-.96.167-1.744.49-2.408 1.157l.532.528.532.53c.38-.384.845-.605 1.601-.737.79-.138 1.816-.166 3.292-.203zM3.284 9.768l.75.016c.03-1.441.054-2.438.187-3.21.128-.736.346-1.195.73-1.582l-.532-.529-.532-.528c-.66.664-.98 1.438-1.144 2.383-.157.909-.18 2.038-.209 3.434zm11.9-6.465-.019.75c1.477.037 2.502.065 3.292.203.756.132 1.22.353 1.602.736l.531-.529.532-.528c-.663-.668-1.448-.99-2.407-1.157-.925-.161-2.08-.188-3.512-.224zm6.542 6.465.75-.016c-.03-1.396-.052-2.525-.21-3.434-.163-.945-.483-1.72-1.144-2.383l-.532.528-.531.53c.384.386.602.845.73 1.581.133.772.156 1.769.187 3.21zm-11.9 9.194.018-.75c-1.476-.037-2.501-.065-3.292-.203-.756-.132-1.22-.353-1.601-.736l-.532.529-.532.529c.664.667 1.449.989 2.408 1.156.925.161 2.08.189 3.512.225zm-6.542-6.464-.75.016c.03 1.395.052 2.525.21 3.433.163.945.483 1.72 1.143 2.384l.532-.53.532-.528c-.384-.386-.602-.846-.73-1.582-.133-.772-.157-1.769-.187-3.21zm18.442-1.365.75.01v-.038l.004-.45c.002-.276.002-.626-.004-.903l-.75.016-.75.016a35 35 0 0 1 0 1.303v.035z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M15.27 17.577s.46 0 .922.923c0 0 1.466-2.308 2.77-2.769" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M21.73 17.115a4.615 4.615 0 1 1-9.23 0 4.615 4.615 0 0 1 9.23 0Z" })] }));
|
|
2422
|
+
|
|
2413
2423
|
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" })] }));
|
|
2414
2424
|
|
|
2415
2425
|
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" })] }));
|
|
@@ -2426,6 +2436,8 @@ const SvgPawStationIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.j
|
|
|
2426
2436
|
|
|
2427
2437
|
const SvgPayRollIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M14 2.2q-.97-.198-2-.2C6.477 2 2 6.477 2 12s4.477 10 10 10 10-4.477 10-10q-.002-1.03-.2-2" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M12 9c-1.105 0-2 .672-2 1.5s.895 1.5 2 1.5 2 .672 2 1.5-.895 1.5-2 1.5m0-6c.87 0 1.612.417 1.886 1M12 9V8m0 7c-.87 0-1.612-.417-1.886-1M12 15v1" }), jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M22.07 3.033a.75.75 0 0 0-1.056-1.066zm-5.598 3.434a.75.75 0 0 0 1.056 1.066zm4.556-4.24-.13.738zm.745.744.738-.13zM17.51 1.254a.75.75 0 1 0-.02 1.5zm3.736 5.256a.75.75 0 0 0 1.5-.02zm.296-4.01-.528-.533-4.542 4.5L17 7l.528.533 4.542-4.5zm-.514-.273-.13.738c.05.01.078.028.093.044a.17.17 0 0 1 .043.093l.739-.13.738-.131a1.65 1.65 0 0 0-1.352-1.353zm0 0 .131-.739c-1.015-.18-2.812-.223-3.649-.234l-.01.75-.01.75c.867.012 2.536.057 3.408.211zm.968 4.273.75-.01c-.012-.837-.055-2.635-.235-3.65l-.738.131-.739.131c.155.872.2 2.54.212 3.408z" })] }));
|
|
2428
2438
|
|
|
2439
|
+
const SvgPrinterIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeWidth: 1.5, d: "M7.354 18c-2.123 0-3.185 0-3.94-.453a3.04 3.04 0 0 1-1.15-1.223c-.392-.77-.287-1.787-.075-3.822.176-1.698.264-2.547.698-3.171.285-.41.67-.745 1.121-.977C4.695 8 5.582 8 7.354 8h9.292c1.772 0 2.659 0 3.346.354.451.232.836.567 1.121.977.434.624.522 1.473.698 3.172.212 2.034.317 3.052-.076 3.821a3.04 3.04 0 0 1-1.148 1.223C19.83 18 18.769 18 16.646 18" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinejoin: "round", strokeWidth: 1.5, d: "M17 8V6c0-1.886 0-2.828-.586-3.414S14.886 2 13 2h-2c-1.886 0-2.828 0-3.414.586S7 4.114 7 6v2M13.989 16H10.01c-.685 0-1.028 0-1.32.109a1.87 1.87 0 0 0-.945.8c-.168.281-.251.642-.417 1.363-.26 1.128-.39 1.691-.301 2.143.117.602.484 1.112.995 1.382.382.203.918.203 1.988.203h3.978c1.07 0 1.606 0 1.988-.203.51-.27.878-.78.995-1.382.089-.452-.041-1.015-.3-2.143-.167-.72-.25-1.082-.418-1.362a1.87 1.87 0 0 0-.946-.801C15.017 16 14.674 16 13.988 16Z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M18 12h.009" })] }));
|
|
2440
|
+
|
|
2429
2441
|
const SvgPrintQueueIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M20.03 7.46h-3.8v9.09h3.8zM6.44 9.52v-6.5h11.69v.9M18.13 20.08v.9H6.44v-6.5" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6.44 14.48a2.48 2.48 0 1 0 0-4.96 2.48 2.48 0 0 0 0 4.96M11.76 8.96h1.46M11.76 12h1.46M11.76 15.04h1.46" })] }));
|
|
2430
2442
|
|
|
2431
2443
|
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" })] }));
|
|
@@ -2544,6 +2556,7 @@ exports.Box3DIcon = SvgBox3DIcon;
|
|
|
2544
2556
|
exports.BoxAxisIcon = SvgBoxAxisIcon;
|
|
2545
2557
|
exports.BoxCrossIcon = SvgBoxCroseIcon;
|
|
2546
2558
|
exports.BoxIcon = BoxIcon;
|
|
2559
|
+
exports.BoxMinusIcons = SvgBoxMinusIcon;
|
|
2547
2560
|
exports.BroadcastIcon = SvgBroadcastIcon;
|
|
2548
2561
|
exports.BrushIcon = BrushIcon;
|
|
2549
2562
|
exports.BugAltIcon = SvgBugAltIcon;
|
|
@@ -2557,6 +2570,7 @@ exports.CenterFocusIcon = CenterFocusIcon;
|
|
|
2557
2570
|
exports.CenterOutlineIcon = CenterOutlineIcon;
|
|
2558
2571
|
exports.ChatBubbleIcon = ChatBubbleIcon;
|
|
2559
2572
|
exports.CheckBoxCheckedIcon = CheckBoxCheckedIcon;
|
|
2573
|
+
exports.CheckBoxFill = SvgCheckBoxFillIcon;
|
|
2560
2574
|
exports.CheckBoxUncheckedIcon = CheckBoxUncheckedIcon;
|
|
2561
2575
|
exports.CheckCircleAltIcon = SvgCheckCircleAltIcon;
|
|
2562
2576
|
exports.CheckCircleFillIcon = SvgCheckCircleFillIcon;
|
|
@@ -2659,6 +2673,7 @@ exports.EllipseBy3XPIcon = SvgEllipseBy3XPIcon;
|
|
|
2659
2673
|
exports.EllipseByCenterXPIcon = SvgEllipseByCenterXPIcon;
|
|
2660
2674
|
exports.EllipseIcon = SvgEllipseIcon;
|
|
2661
2675
|
exports.EllipticalIcon = SvgEllipticalIcon;
|
|
2676
|
+
exports.EmptyBoxIcon = SvgEmptyBoxIcon;
|
|
2662
2677
|
exports.EpilepsyInfinityIcon = SvgEpilepsyInfinityIcon;
|
|
2663
2678
|
exports.EqualIcon = SvgEqualIcon;
|
|
2664
2679
|
exports.EraserIcon = EraserIcon;
|
|
@@ -2759,9 +2774,11 @@ exports.LogoutAltIcon = LogoutAltIcon;
|
|
|
2759
2774
|
exports.LogoutCurveIcon = SvgLogoutAltIcon;
|
|
2760
2775
|
exports.LogoutIcon = LogoutIcon;
|
|
2761
2776
|
exports.MailAltIcon = SvgMailAltIcon;
|
|
2777
|
+
exports.MailCheckIcon = SvgMailCheckIcon;
|
|
2762
2778
|
exports.MailIcon = SvgMailIcon;
|
|
2763
2779
|
exports.MeanderIcon = SvgMeanderIcon;
|
|
2764
2780
|
exports.MeasureAngleIcon = SvgMeasureAngleIcon;
|
|
2781
|
+
exports.MediumIcon = SvgMediumIcon;
|
|
2765
2782
|
exports.MenuDotIcon = SvgMenuDotIcon;
|
|
2766
2783
|
exports.MenuDotOutlineIcon = MenuDotOutlineIcon;
|
|
2767
2784
|
exports.MenuLineIcon = SvgMenuLineIcon;
|
|
@@ -2839,6 +2856,7 @@ exports.PolygonIcon = SvgPolygonIcon;
|
|
|
2839
2856
|
exports.PolygonPourIcon = SvgPolygonPourIcon;
|
|
2840
2857
|
exports.PortIcon = SvgPortIcon;
|
|
2841
2858
|
exports.PrintQueueIcon = SvgPrintQueueIcon;
|
|
2859
|
+
exports.PrinterIcon = SvgPrinterIcon;
|
|
2842
2860
|
exports.ProductIcon = ProductIcon;
|
|
2843
2861
|
exports.ProjectCreateIcon = ProjectCreateIcon;
|
|
2844
2862
|
exports.ProjectToSketchIcon = SvgProjectToSketchIcon;
|