@ideeza/icons 2.0.8 → 2.1.0
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/HappyFaceIcon.d.ts +7 -0
- package/dist/icons/v2/general/MailCheckIcon.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 HappyFaceIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default HappyFaceIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgMailCheckIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgMailCheckIcon;
|
|
@@ -2,27 +2,32 @@ 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";
|
|
19
22
|
export { default as FolderAltIcon } from "./FolderAltIcon";
|
|
20
23
|
export { default as FormIcon } from "./FormIcon";
|
|
24
|
+
export { default as HappyFaceIcon } from "./HappyFaceIcon";
|
|
21
25
|
export { default as HomeIcon } from "./HomeIcon";
|
|
22
26
|
export { default as KeyboardCurveRightArrowIcon } from "./KeyboardCurveRightArrowIcon";
|
|
23
27
|
export { default as KeyboardCurveUptArrowIcon } from "./KeyboardCurveUpIcon";
|
|
24
28
|
export { default as LockAltIcon } from "./LockAltIcon";
|
|
25
29
|
export { default as LogoutCurveIcon } from "./LogoutCurveIcon";
|
|
30
|
+
export { default as MailCheckIcon } from "./MailCheckIcon";
|
|
26
31
|
export { default as MessageIcon } from "./MessageIcon";
|
|
27
32
|
export { default as MoonHalfIcon } from "./MoonHalfIcon";
|
|
28
33
|
export { default as MultilineIcon } from "./MultilineIcon";
|
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" })] })] })] }));
|
|
@@ -2400,6 +2408,8 @@ const SvgFolderIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs(
|
|
|
2400
2408
|
|
|
2401
2409
|
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
2410
|
|
|
2411
|
+
const HappyFaceIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 28 28", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("circle", { cx: 14.001, cy: 14, r: 11.667, stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5 }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M9.334 17.5a5.82 5.82 0 0 0 4.667 2.333 5.82 5.82 0 0 0 4.666-2.333" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M9.344 10.5h-.01m9.333 0h-.01" })] }));
|
|
2412
|
+
|
|
2403
2413
|
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" })] }));
|
|
2404
2414
|
|
|
2405
2415
|
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" })] }));
|
|
@@ -2410,6 +2420,8 @@ const LockAltIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("s
|
|
|
2410
2420
|
|
|
2411
2421
|
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
2422
|
|
|
2423
|
+
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" })] }));
|
|
2424
|
+
|
|
2413
2425
|
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
2426
|
|
|
2415
2427
|
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" })] }));
|
|
@@ -2546,6 +2558,7 @@ exports.Box3DIcon = SvgBox3DIcon;
|
|
|
2546
2558
|
exports.BoxAxisIcon = SvgBoxAxisIcon;
|
|
2547
2559
|
exports.BoxCrossIcon = SvgBoxCroseIcon;
|
|
2548
2560
|
exports.BoxIcon = BoxIcon;
|
|
2561
|
+
exports.BoxMinusIcons = SvgBoxMinusIcon;
|
|
2549
2562
|
exports.BroadcastIcon = SvgBroadcastIcon;
|
|
2550
2563
|
exports.BrushIcon = BrushIcon;
|
|
2551
2564
|
exports.BugAltIcon = SvgBugAltIcon;
|
|
@@ -2559,6 +2572,7 @@ exports.CenterFocusIcon = CenterFocusIcon;
|
|
|
2559
2572
|
exports.CenterOutlineIcon = CenterOutlineIcon;
|
|
2560
2573
|
exports.ChatBubbleIcon = ChatBubbleIcon;
|
|
2561
2574
|
exports.CheckBoxCheckedIcon = CheckBoxCheckedIcon;
|
|
2575
|
+
exports.CheckBoxFill = SvgCheckBoxFillIcon;
|
|
2562
2576
|
exports.CheckBoxUncheckedIcon = CheckBoxUncheckedIcon;
|
|
2563
2577
|
exports.CheckCircleAltIcon = SvgCheckCircleAltIcon;
|
|
2564
2578
|
exports.CheckCircleFillIcon = SvgCheckCircleFillIcon;
|
|
@@ -2661,6 +2675,7 @@ exports.EllipseBy3XPIcon = SvgEllipseBy3XPIcon;
|
|
|
2661
2675
|
exports.EllipseByCenterXPIcon = SvgEllipseByCenterXPIcon;
|
|
2662
2676
|
exports.EllipseIcon = SvgEllipseIcon;
|
|
2663
2677
|
exports.EllipticalIcon = SvgEllipticalIcon;
|
|
2678
|
+
exports.EmptyBoxIcon = SvgEmptyBoxIcon;
|
|
2664
2679
|
exports.EpilepsyInfinityIcon = SvgEpilepsyInfinityIcon;
|
|
2665
2680
|
exports.EqualIcon = SvgEqualIcon;
|
|
2666
2681
|
exports.EraserIcon = EraserIcon;
|
|
@@ -2710,6 +2725,7 @@ exports.GridCompactIcon = GridCompactIcon;
|
|
|
2710
2725
|
exports.GridOffIcon = GridOffIcon;
|
|
2711
2726
|
exports.GridOptionsIcon = SvgGridOptionsIcon;
|
|
2712
2727
|
exports.GussetPlateIcon = SvgGussetPlateIcon;
|
|
2728
|
+
exports.HappyFaceIcon = HappyFaceIcon;
|
|
2713
2729
|
exports.HeartCheckOutlineIcon = HeartCheckOutlineIcon;
|
|
2714
2730
|
exports.HeartFillIcon = HeartFillIcon;
|
|
2715
2731
|
exports.HeartOutline = HeartOutline;
|
|
@@ -2761,9 +2777,11 @@ exports.LogoutAltIcon = LogoutAltIcon;
|
|
|
2761
2777
|
exports.LogoutCurveIcon = SvgLogoutAltIcon;
|
|
2762
2778
|
exports.LogoutIcon = LogoutIcon;
|
|
2763
2779
|
exports.MailAltIcon = SvgMailAltIcon;
|
|
2780
|
+
exports.MailCheckIcon = SvgMailCheckIcon;
|
|
2764
2781
|
exports.MailIcon = SvgMailIcon;
|
|
2765
2782
|
exports.MeanderIcon = SvgMeanderIcon;
|
|
2766
2783
|
exports.MeasureAngleIcon = SvgMeasureAngleIcon;
|
|
2784
|
+
exports.MediumIcon = SvgMediumIcon;
|
|
2767
2785
|
exports.MenuDotIcon = SvgMenuDotIcon;
|
|
2768
2786
|
exports.MenuDotOutlineIcon = MenuDotOutlineIcon;
|
|
2769
2787
|
exports.MenuLineIcon = SvgMenuLineIcon;
|