@ideeza/icons 2.1.1 → 2.1.3
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/file/index.d.ts +1 -0
- package/dist/icons/file/upload.d.ts +3 -0
- package/dist/icons/general/home.d.ts +3 -0
- package/dist/icons/others/new.d.ts +3 -0
- package/dist/icons/social/facebook.d.ts +3 -0
- package/dist/icons/v2/general/ArrowDownFillIcon.d.ts +7 -0
- package/dist/icons/v2/general/ExitFullScreenIcon.d.ts +7 -0
- package/dist/icons/v2/general/ForwordAltIcon.d.ts +7 -0
- package/dist/icons/v2/general/PlusThinIcon.d.ts +7 -0
- package/dist/icons/v2/general/ReplyIcon.d.ts +7 -0
- package/dist/icons/v2/general/SelectVisiblePartAltIcon.d.ts +7 -0
- package/dist/icons/v2/general/index.d.ts +6 -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
- package/dist/icons/general/BusAltIcon.d.ts +0 -7
- package/dist/icons/general/TrainIcon.d.ts +0 -7
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as UploadIcon } from './upload';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgArrowDownFillIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgArrowDownFillIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgExitFullScreenIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgExitFullScreenIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgForwordAltIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgForwordAltIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgPlusThinIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgPlusThinIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgReplyIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgReplyIcon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { SVGProps } from "react";
|
|
2
|
+
interface SVGRProps {
|
|
3
|
+
title?: string;
|
|
4
|
+
titleId?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const SvgSelectVisiblePartAltIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default SvgSelectVisiblePartAltIcon;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export { default as ArrowDownFillIcon } from "./ArrowDownFillIcon";
|
|
1
2
|
export { default as ArrowDownRightIcon } from "./ArrowDownRightIcon";
|
|
2
3
|
export { default as ArrowLeftThinIcon } from "./ArrowLeftThinIcon";
|
|
3
4
|
export { default as ArrowUpRightIcon } from "./ArrowUpRightIcon";
|
|
@@ -19,6 +20,7 @@ export { default as DollarCircleIcon } from "./DollarCircleIcon";
|
|
|
19
20
|
export { default as DoubleCheckIcon } from "./DoubleCheckIcon";
|
|
20
21
|
export { default as DoublePaperIcon } from "./DoublePaperIcon";
|
|
21
22
|
export { default as EmptyBoxIcon } from "./EmptyBoxIcon";
|
|
23
|
+
export { default as ExitFullScreenIcon } from "./ExitFullScreenIcon";
|
|
22
24
|
export { default as ExpandViewIcon } from "./ExpandViewIcon";
|
|
23
25
|
export { default as ExternalLinkIcon } from "./ExternalLinkIcon";
|
|
24
26
|
export { default as FasterIcon } from "./FasterIcon";
|
|
@@ -27,6 +29,7 @@ export { default as FlameIcon } from "./FlameIcon";
|
|
|
27
29
|
export { default as FolderAltIcon } from "./FolderAltIcon";
|
|
28
30
|
export { default as FolderExportAltIcon } from "./FolderExportAltIcon";
|
|
29
31
|
export { default as FormIcon } from "./FormIcon";
|
|
32
|
+
export { default as ForwardAltIcon } from "./ForwordAltIcon";
|
|
30
33
|
export { default as HappyFaceIcon } from "./HappyFaceIcon";
|
|
31
34
|
export { default as HomeIcon } from "./HomeIcon";
|
|
32
35
|
export { default as ImageAltIcon } from "./ImageAltIcon";
|
|
@@ -44,9 +47,12 @@ export { default as PartsIcon } from "./PartsIcon";
|
|
|
44
47
|
export { default as PawStationIcon } from "./PawStationIcon";
|
|
45
48
|
export { default as PayRollIcon } from "./PayRollIcon";
|
|
46
49
|
export { default as PenIcon } from "./PenIcon";
|
|
50
|
+
export { default as PlusThinIcon } from "./PlusThinIcon";
|
|
47
51
|
export { default as PrinterIcon } from "./PrinterIcon";
|
|
48
52
|
export { default as PrintQueueIcon } from "./PrintQueueIcon";
|
|
49
53
|
export { default as ReferAltIcon } from "./ReferAltIcon";
|
|
54
|
+
export { default as ReplyIcon } from "./ReplyIcon";
|
|
55
|
+
export { default as SelectVisiblePartAltIcon } from "./SelectVisiblePartAltIcon";
|
|
50
56
|
export { default as SendUpAltIcon } from "./SendUpAltIcon";
|
|
51
57
|
export { default as SendUpIcon } from "./SendUpIcon";
|
|
52
58
|
export { default as SettingOutlineIcon } from "./SettingOutlineIcon";
|
package/dist/index.cjs
CHANGED
|
@@ -2362,6 +2362,8 @@ const TwitterIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("s
|
|
|
2362
2362
|
|
|
2363
2363
|
const SvgXIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M16.728 2.088H7.296A5.116 5.116 0 0 0 2.184 7.2v9.888A5.116 5.116 0 0 0 7.296 22.2h9.456a5.116 5.116 0 0 0 5.112-5.112V7.176a5.13 5.13 0 0 0-5.136-5.088m1.704 16.704h-3.696c-.024 0-.048 0-.048-.024l-3.456-5.016h-.024q-2.088 2.412-4.104 4.752c-.072.096-.168.168-.24.24-.024.024-.048.024-.072.024H5.784c-.024 0-.048 0-.024-.024l4.92-5.712q.036-.036 0-.072L5.784 5.832v-.024h3.72c.024 0 .024 0 .048.024l3.264 4.728h.024l4.056-4.728c.024-.024.048-.024.072-.024h1.008c.048 0 .048.024.024.048l-4.656 5.4q-.036.036 0 .072l5.112 7.44s0 .024-.024.024" }), jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M9.071 6.672H7.463c-.024 0-.024.024-.024.048l7.729 11.208h1.608c.023 0 .023-.024.023-.048z" })] }));
|
|
2364
2364
|
|
|
2365
|
+
const SvgArrowDownFillIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 25 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M19.093 8.195a1 1 0 0 1 .212 1.398 53.178 53.178 0 0 1-2.457 3.063c-.663.762-1.397 1.55-2.082 2.156-.341.302-.694.58-1.039.787-.316.19-.751.401-1.228.401-.476 0-.91-.21-1.228-.401a7.4 7.4 0 0 1-1.038-.787c-.686-.606-1.42-1.394-2.082-2.156a53 53 0 0 1-2.457-3.063A1 1 0 0 1 6.5 8h12c.207 0 .415.063.594.195" })] }));
|
|
2366
|
+
|
|
2365
2367
|
const SvgArrowDownRightIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M14.167 14.167 5 5" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M9.167 14.89s4.694.396 5.407-.316c.712-.713.316-5.407.316-5.407" })] }));
|
|
2366
2368
|
|
|
2367
2369
|
const SvgArrowLeftThinIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.667, d: "M8.891 16.25q-2.557-2.414-5.116-4.835a1.666 1.666 0 0 1-.003-2.417q2.535-2.411 5.071-4.831M4.265 10.343H17.5" })] }));
|
|
@@ -2404,6 +2406,8 @@ const SvgDoublePaperIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.
|
|
|
2404
2406
|
|
|
2405
2407
|
const SvgEmptyBoxIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 21 21", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsxs("g", { clipPath: "url(#empty-box-icon_svg__a)", children: [jsxRuntimeExports.jsx("path", { d: "M.5 4.5a4 4 0 0 1 4-4h12a4 4 0 0 1 4 4v12a4 4 0 0 1-4 4h-12a4 4 0 0 1-4-4z" }), jsxRuntimeExports.jsx("path", { d: "M4.5 1h12A3.5 3.5 0 0 1 20 4.5v12a3.5 3.5 0 0 1-3.5 3.5h-12A3.5 3.5 0 0 1 1 16.5v-12A3.5 3.5 0 0 1 4.5 1" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", d: "M4.5 1h12A3.5 3.5 0 0 1 20 4.5v12a3.5 3.5 0 0 1-3.5 3.5h-12A3.5 3.5 0 0 1 1 16.5v-12A3.5 3.5 0 0 1 4.5 1Z" })] }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", d: "M4.5 1h12A3.5 3.5 0 0 1 20 4.5v12a3.5 3.5 0 0 1-3.5 3.5h-12A3.5 3.5 0 0 1 1 16.5v-12A3.5 3.5 0 0 1 4.5 1Z" }), jsxRuntimeExports.jsx("defs", { children: jsxRuntimeExports.jsx("clipPath", { id: "empty-box-icon_svg__a", children: jsxRuntimeExports.jsx("path", { d: "M.5 4.5a4 4 0 0 1 4-4h12a4 4 0 0 1 4 4v12a4 4 0 0 1-4 4h-12a4 4 0 0 1-4-4z" }) }) })] }));
|
|
2406
2408
|
|
|
2409
|
+
const SvgExitFullScreenIcon = ({ 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("g", { clipPath: "url(#exit-full-screen-icon_svg__a)", children: jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M3.6 16.8h3.6v3.6h2.4v-6h-6zm3.6-9.6H3.6v2.4h6v-6H7.2zm7.2 13.2h2.4v-3.6h3.6v-2.4h-6zm2.4-13.2V3.6h-2.4v6h6V7.2z" }) }), jsxRuntimeExports.jsx("defs", { children: jsxRuntimeExports.jsx("clipPath", { id: "exit-full-screen-icon_svg__a", children: jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M0 0h24v24H0z" }) }) })] }));
|
|
2410
|
+
|
|
2407
2411
|
const SvgExpandViewIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M2.425 5.8V2.425H5.8M2.425 2.425l4.042 4.041M5.8 17.575H2.425V14.2M2.425 17.575 6.5 13.5M17.575 14.2v3.375H14.2M17.575 17.575l-4.042-4.042M14.2 2.425h3.375V5.8M17.575 2.425l-4.042 4.041M12.309 6.025H7.692c-.92 0-1.667.746-1.667 1.667v4.616c0 .92.746 1.667 1.667 1.667h4.617c.92 0 1.666-.746 1.666-1.667V7.692c0-.92-.746-1.667-1.666-1.667" })] }));
|
|
2408
2412
|
|
|
2409
2413
|
const SvgExternalLinkIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M2.517 13.317h9.133c.917 0 1.667-.75 1.667-1.667V2.517" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M17.483 2.517V14.15a3.33 3.33 0 0 1-3.333 3.333H2.517M2.517 2.517l10.308 10.308" })] }));
|
|
@@ -2420,6 +2424,8 @@ const SvgFolderExportAltIcon = ({ title, titleId, ...props }) => (jsxRuntimeExpo
|
|
|
2420
2424
|
|
|
2421
2425
|
const SvgFormIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M3.5 9.368c0-3.473 0-5.21 1.025-6.289S7.2 2 10.5 2h3c3.3 0 4.95 0 5.975 1.08C20.5 4.157 20.5 5.894 20.5 9.367v5.264c0 3.473 0 5.21-1.025 6.289S16.8 22 13.5 22h-3c-3.3 0-4.95 0-5.975-1.08C3.5 19.843 3.5 18.106 3.5 14.633z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "m8 2 .082.493c.2 1.197.3 1.796.72 2.152C9.22 5 9.827 5 11.041 5h1.917c1.213 0 1.82 0 2.24-.355.42-.356.52-.955.719-2.152L16 2" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 2, d: "M8 16h4m-4-5h8" })] }));
|
|
2422
2426
|
|
|
2427
|
+
const SvgForwordAltIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "m16 17-1.425-1.4 4.6-4.6-4.6-4.6L16 5l6 6zM2 19v-4q0-2.075 1.45-3.525Q4.925 10 7 10h6.175l-3.6-3.6L11 5l6 6-6 6-1.425-1.4 3.6-3.6H7q-1.25 0-2.125.875A2.9 2.9 0 0 0 4 15v4z" })] }));
|
|
2428
|
+
|
|
2423
2429
|
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" })] }));
|
|
2424
2430
|
|
|
2425
2431
|
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" })] }));
|
|
@@ -2454,12 +2460,18 @@ const SvgPayRollIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs
|
|
|
2454
2460
|
|
|
2455
2461
|
const SvgPenIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M3.423 15.464C7.33 11.34 11.237 7.217 15.134 3.093L17.041 3l3.114 3.113v1.67C15.969 11.888 11.783 16 7.598 20.104c-1.536-.02-3.072-.03-4.598-.051.144-1.536.278-3.072.423-4.598zM17.99 9.917l-4.825-4.742" })] }));
|
|
2456
2462
|
|
|
2463
|
+
const SvgPlusThinIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M11.95 2.95v18M20.95 11.95h-18" })] }));
|
|
2464
|
+
|
|
2457
2465
|
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" })] }));
|
|
2458
2466
|
|
|
2459
2467
|
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" })] }));
|
|
2460
2468
|
|
|
2461
2469
|
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" })] }));
|
|
2462
2470
|
|
|
2471
|
+
const SvgReplyIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { fill: "currentColor", d: "M19 19v-4q0-1.25-.875-2.125A2.9 2.9 0 0 0 16 12H6.825l3.6 3.6L9 17l-6-6 6-6 1.425 1.4-3.6 3.6H16q2.075 0 3.538 1.463T21 15v4z" })] }));
|
|
2472
|
+
|
|
2473
|
+
const SvgSelectVisiblePartAltIcon = ({ 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: "M6.367 13.675h-1.3a2.497 2.497 0 0 1-2.5-2.5V5.058c0-1.383 1.116-2.5 2.5-2.5h6.116c1.384 0 2.5 1.117 2.5 2.5v1.067" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinejoin: "round", strokeWidth: 2, d: "m15.583 10.791-4.791 4.792L9.2 9.2z" }), jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "m13.192 13.191 4.25 4.25" })] }));
|
|
2474
|
+
|
|
2463
2475
|
const SvgSendUpAltIcon = ({ title, titleId, ...props }) => (jsxRuntimeExports.jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 24 24", "aria-labelledby": titleId, ...props, children: [title ? jsxRuntimeExports.jsx("title", { id: titleId, children: title }) : null, jsxRuntimeExports.jsx("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M3.015 10.81C2.497 7.515 15.693.513 19.32 3.904c3.708 3.462-2.847 17.466-5.957 17.089-1.484-.185-2.328-3.673-2.829-7.257-3.61-.457-7.265-1.283-7.529-2.926zM13.259 10.186l-3.101 3.629" })] }));
|
|
2464
2476
|
|
|
2465
2477
|
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" })] }));
|
|
@@ -2550,6 +2562,7 @@ exports.ArcByCenterXPIcon = SvgArcByCenterXPIcon;
|
|
|
2550
2562
|
exports.ArcIcon = SvgArcIcon;
|
|
2551
2563
|
exports.ArduinoIcon = ArduinoIcon;
|
|
2552
2564
|
exports.ArrowBackwardIcon = ArrowBackwardIcon;
|
|
2565
|
+
exports.ArrowDownFillIcon = SvgArrowDownFillIcon;
|
|
2553
2566
|
exports.ArrowDownRightIcon = SvgArrowDownRightIcon;
|
|
2554
2567
|
exports.ArrowDownwardIcon = ArrowDownwardIcon;
|
|
2555
2568
|
exports.ArrowForwardIcon = ArrowForwordIcon;
|
|
@@ -2708,6 +2721,7 @@ exports.EqualIcon = SvgEqualIcon;
|
|
|
2708
2721
|
exports.EraserIcon = EraserIcon;
|
|
2709
2722
|
exports.ErcIcon = SvgErcIcon;
|
|
2710
2723
|
exports.ErrorIcon = SvgErrorIcon;
|
|
2724
|
+
exports.ExitFullScreenIcon = SvgExitFullScreenIcon;
|
|
2711
2725
|
exports.ExpandViewIcon = SvgExpandViewIcon;
|
|
2712
2726
|
exports.ExtendToNextIcon = SvgExtendToNextIcon;
|
|
2713
2727
|
exports.ExternalLinkIcon = SvgExternalLinkIcon;
|
|
@@ -2741,6 +2755,7 @@ exports.FolderIcon = SvgFolderIcon$1;
|
|
|
2741
2755
|
exports.FolderOutlineIcon = FolderOutlineIcon;
|
|
2742
2756
|
exports.FolderProtectedIcon = FolderProtectedIcon;
|
|
2743
2757
|
exports.FormIcon = SvgFormIcon;
|
|
2758
|
+
exports.ForwardAltIcon = SvgForwordAltIcon;
|
|
2744
2759
|
exports.ForwordIcon = ForwordIcon;
|
|
2745
2760
|
exports.FrameIcon = SvgFrameIcon;
|
|
2746
2761
|
exports.FrameOriginIcon = SvgFrameOriginIcon;
|
|
@@ -2883,6 +2898,7 @@ exports.PlaySkipBackIcon = SvgPlaySkipBackIcon;
|
|
|
2883
2898
|
exports.PlaySkipForwordIcon = SvgPlaySkipForwordIcon;
|
|
2884
2899
|
exports.PlayStoreIcon = PlayStoreIcon;
|
|
2885
2900
|
exports.PlusIcon = PlusIcon;
|
|
2901
|
+
exports.PlusThinIcon = SvgPlusThinIcon;
|
|
2886
2902
|
exports.PointAltIcon = SvgPointIcon$1;
|
|
2887
2903
|
exports.PointIcon = SvgPointIcon;
|
|
2888
2904
|
exports.PointRightOutlineIcon = PointRightOutlineIcon;
|
|
@@ -2924,6 +2940,7 @@ exports.ReplacePartWith3DfinditIcon = SvgReplacePartWith3DfinditIcon;
|
|
|
2924
2940
|
exports.ReplacePartWithCopyIcon = SvgReplacePartWithCopyIcon;
|
|
2925
2941
|
exports.ReplacePartWithNewPartIcon = SvgReplacePartWithNewPartIcon;
|
|
2926
2942
|
exports.ReplacePartWithStandardPartIcon = SvgReplacePartWithStandardPartIcon;
|
|
2943
|
+
exports.ReplyIcon = SvgReplyIcon;
|
|
2927
2944
|
exports.RepositionOriginIcon = SvgRepositionOriginIcon;
|
|
2928
2945
|
exports.RerouteIcon = SvgRerouteIcon;
|
|
2929
2946
|
exports.RestoreSnapIcon = SvgRestoreSnapIcon;
|
|
@@ -2951,6 +2968,7 @@ exports.SearchIcon = SearchIcon;
|
|
|
2951
2968
|
exports.SearchThinIcon = SearchThinIcon;
|
|
2952
2969
|
exports.SelectAllIcon = SelectAllIcon;
|
|
2953
2970
|
exports.SelectLasoIcon = SelectLasoIcon;
|
|
2971
|
+
exports.SelectVisiblePartAltIcon = SvgSelectVisiblePartAltIcon;
|
|
2954
2972
|
exports.SelectVisiblePartIcon = SelectVisiblePartIcon;
|
|
2955
2973
|
exports.SendAltIcon = SendAltIcon;
|
|
2956
2974
|
exports.SendIcon = SendIcon;
|