@ideeza/icons 1.1.0 → 1.1.2
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/v2/general/ArrowLeftThinIcon.d.ts +8 -0
- package/dist/icons/v2/general/KeyboardCurveRightArrowIcon.d.ts +8 -0
- package/dist/icons/v2/general/LogoutCurveIcon.d.ts +8 -0
- package/dist/icons/v2/general/MoonHalfIcon.d.ts +8 -0
- package/dist/icons/v2/general/ReferAltIcon.d.ts +8 -0
- package/dist/icons/v2/general/SettingOutlineIcon.d.ts +8 -0
- package/dist/icons/v2/general/UserCaptureAltIcon.d.ts +8 -0
- package/dist/icons/v2/general/UserSmallIcon.d.ts +8 -0
- package/dist/icons/v2/general/index.d.ts +11 -3
- package/dist/index.cjs +62 -18
- package/dist/index.cjs.map +1 -1
- package/dist/index.esm.js +55 -19
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
interface SVGRProps {
|
|
4
|
+
title?: string;
|
|
5
|
+
titleId?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const SvgArrowLeftThinIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
|
|
8
|
+
export default SvgArrowLeftThinIcon;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
interface SVGRProps {
|
|
4
|
+
title?: string;
|
|
5
|
+
titleId?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const SvgKeyboardCurveRightArrowIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
|
|
8
|
+
export default SvgKeyboardCurveRightArrowIcon;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
interface SVGRProps {
|
|
4
|
+
title?: string;
|
|
5
|
+
titleId?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const SvgLogoutAltIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
|
|
8
|
+
export default SvgLogoutAltIcon;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
interface SVGRProps {
|
|
4
|
+
title?: string;
|
|
5
|
+
titleId?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const SvgMoonHalfIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
|
|
8
|
+
export default SvgMoonHalfIcon;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
interface SVGRProps {
|
|
4
|
+
title?: string;
|
|
5
|
+
titleId?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const SvgReferIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
|
|
8
|
+
export default SvgReferIcon;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
interface SVGRProps {
|
|
4
|
+
title?: string;
|
|
5
|
+
titleId?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const SvgSettingOutlineIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
|
|
8
|
+
export default SvgSettingOutlineIcon;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
interface SVGRProps {
|
|
4
|
+
title?: string;
|
|
5
|
+
titleId?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const SvgUserCaptureIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
|
|
8
|
+
export default SvgUserCaptureIcon;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { SVGProps } from "react";
|
|
3
|
+
interface SVGRProps {
|
|
4
|
+
title?: string;
|
|
5
|
+
titleId?: string;
|
|
6
|
+
}
|
|
7
|
+
declare const SvgUserOutlineIcon: ({ title, titleId, ...props }: SVGProps<SVGSVGElement> & SVGRProps) => React.JSX.Element;
|
|
8
|
+
export default SvgUserOutlineIcon;
|
|
@@ -1,8 +1,16 @@
|
|
|
1
|
+
export { default as ArrowLeftThinIcon } from "./ArrowLeftThinIcon";
|
|
1
2
|
export { default as BlogIcon } from "./BlogIcon";
|
|
2
|
-
export { default as TagIcon } from "./TagIcon";
|
|
3
|
-
export { default as NoteIcon } from "./NoteIcon";
|
|
4
|
-
export { default as FolderAltIcon } from "./FolderAltIcon";
|
|
5
3
|
export { default as DashboardMenuIcon } from "./DashboardMenuIcon";
|
|
4
|
+
export { default as FolderAltIcon } from "./FolderAltIcon";
|
|
5
|
+
export { default as KeyboardCurveRightArrowIcon } from "./KeyboardCurveRightArrowIcon";
|
|
6
|
+
export { default as LogoutCurveIcon } from "./LogoutCurveIcon";
|
|
6
7
|
export { default as MessageIcon } from "./MessageIcon";
|
|
8
|
+
export { default as MoonHalfIcon } from "./MoonHalfIcon";
|
|
7
9
|
export { default as NewsFeedIcon } from "./NewsFeedIcon";
|
|
10
|
+
export { default as NoteIcon } from "./NoteIcon";
|
|
8
11
|
export { default as PartsIcon } from "./PartsIcon";
|
|
12
|
+
export { default as ReferAltIcon } from "./ReferAltIcon";
|
|
13
|
+
export { default as SettingOutlineIcon } from "./SettingOutlineIcon";
|
|
14
|
+
export { default as TagIcon } from "./TagIcon";
|
|
15
|
+
export { default as UserCaptureAltIcon } from "./UserCaptureAltIcon";
|
|
16
|
+
export { default as UserSmallIcon } from "./UserSmallIcon";
|
package/dist/index.cjs
CHANGED
|
@@ -2306,39 +2306,36 @@ const TwitterIcon = ({ title, titleId, ...props }) => (React.createElement("svg"
|
|
|
2306
2306
|
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
2307
2307
|
React.createElement("path", { fill: "currentColor", d: "M.7 8.162c1.045.06 1.959-.185 2.85-.832-.9-.154-1.525-.565-1.864-1.416.263-.036.493.032.765-.077C1.564 5.448.99 4.865.967 3.857c.28.022.493.207.828.18C.98 3.241.732 2.373 1.243 1.32c.85.977 1.845 1.642 3.062 1.954.068.018.131.036.2.05.311.072.682.226.872.203.326-.04 0-.416.082-.905.257-1.52 1.93-2.211 3.17-1.32.362.262.647.258 1.004.1.186-.082.376-.164.597-.259-.05.435-.384.674-.65.995.302.068.546-.018.827-.108-.095.312-.33.488-.543.66-.222.177-.308.362-.317.652-.135 4.383-5.115 7.77-8.521 5.075-.33-.263-.01 0-.326-.254" })));
|
|
2308
2308
|
|
|
2309
|
+
const SvgArrowLeftThinIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
|
|
2310
|
+
title ? React__namespace.createElement("title", { id: titleId }, title) : null,
|
|
2311
|
+
React__namespace.createElement("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" })));
|
|
2312
|
+
|
|
2309
2313
|
const SvgBlogIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
|
|
2310
2314
|
title ? React__namespace.createElement("title", { id: titleId }, title) : null,
|
|
2311
2315
|
React__namespace.createElement("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" }),
|
|
2312
2316
|
React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M8.333 8.333h.833M8.333 12.5h3.333" }),
|
|
2313
2317
|
React__namespace.createElement("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" })));
|
|
2314
2318
|
|
|
2315
|
-
const
|
|
2319
|
+
const SvgDashboardMenuIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
|
|
2316
2320
|
title ? React__namespace.createElement("title", { id: titleId }, title) : null,
|
|
2317
|
-
React__namespace.createElement("g", { stroke: "currentColor", strokeWidth: 1.5, clipPath: "url(#
|
|
2318
|
-
React__namespace.createElement("path", {
|
|
2319
|
-
React__namespace.createElement("path", { d: "M2.312 9.287c-.836.933-.854 2.342-.087 3.333a28.3 28.3 0 0 0 5.156 5.155c.99.767 2.4.75 3.333-.087a77 77 0 0 0 7.096-7.248c.222-.258.36-.574.391-.912.138-1.496.42-5.807-.75-6.978-1.171-1.171-5.482-.888-6.979-.751-.338.031-.654.17-.912.391a77 77 0 0 0-7.248 7.097Z" }),
|
|
2320
|
-
React__namespace.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "m5.833 11.667 2.5 2.5" })),
|
|
2321
|
+
React__namespace.createElement("g", { stroke: "currentColor", strokeWidth: 1.5, clipPath: "url(#dashboard-menu-icon_svg__a)" },
|
|
2322
|
+
React__namespace.createElement("path", { d: "M1.667 5c0-1.571 0-2.357.488-2.845S3.43 1.667 5 1.667s2.357 0 2.846.488.488 1.274.488 2.845v1.667c0 1.571 0 2.357-.488 2.845C7.357 10 6.572 10 5 10c-1.571 0-2.357 0-2.845-.488s-.488-1.274-.488-2.845zM1.667 15.833c0-.776 0-1.165.127-1.47.169-.41.493-.734.902-.903.306-.127.694-.127 1.471-.127h1.667c.776 0 1.165 0 1.47.127.41.17.734.494.903.902.127.306.127.695.127 1.471s0 1.165-.127 1.472c-.17.408-.494.732-.902.901-.306.127-.695.127-1.471.127H4.167c-.777 0-1.165 0-1.471-.127a1.67 1.67 0 0 1-.902-.901c-.127-.307-.127-.695-.127-1.472ZM11.667 13.333c0-1.571 0-2.357.488-2.845S13.43 10 15 10s2.357 0 2.846.488.488 1.274.488 2.845V15c0 1.571 0 2.357-.488 2.845-.489.488-1.274.488-2.846.488-1.571 0-2.357 0-2.845-.488s-.488-1.274-.488-2.845zM11.667 4.167c0-.777 0-1.165.127-1.471.169-.409.493-.733.902-.902.306-.127.694-.127 1.471-.127h1.667c.776 0 1.165 0 1.47.127.41.169.734.493.903.902.127.306.127.694.127 1.47 0 .777 0 1.166-.127 1.472-.17.408-.494.733-.902.902-.306.127-.695.127-1.471.127h-1.667c-.777 0-1.165 0-1.471-.127a1.67 1.67 0 0 1-.902-.902c-.127-.306-.127-.695-.127-1.471Z" })),
|
|
2321
2323
|
React__namespace.createElement("defs", null,
|
|
2322
|
-
React__namespace.createElement("clipPath", { id: "
|
|
2324
|
+
React__namespace.createElement("clipPath", { id: "dashboard-menu-icon_svg__a" },
|
|
2323
2325
|
React__namespace.createElement("path", { fill: "currentColor", d: "M0 0h20v20H0z" })))));
|
|
2324
2326
|
|
|
2325
|
-
const SvgNoteIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
|
|
2326
|
-
title ? React__namespace.createElement("title", { id: titleId }, title) : null,
|
|
2327
|
-
React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M8.574 18.301h-.748c-2.707 0-4.061 0-4.902-.854s-.841-2.23-.841-4.98V8.302c0-2.75 0-4.125.841-4.979s2.195-.854 4.902-.854h2.46c2.708 0 4.29.046 5.13.9.841.854.834 2.183.834 4.933v.989M13.287 1.667v1.666M9.121 1.667v1.666M4.954 1.667v1.666" }),
|
|
2328
|
-
React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M5.833 12.5h3.333M5.833 8.333H12.5" }),
|
|
2329
|
-
React__namespace.createElement("path", { stroke: "currentColor", strokeWidth: 1.5, d: "M17.3 12.399c-.755-.846-1.207-.795-1.71-.644-.352.05-1.56 1.459-2.063 1.908-.825.816-1.655 1.656-1.71 1.765-.156.254-.302.705-.372 1.208-.13.755-.32 1.604-.08 1.677.239.073.905-.067 1.66-.178.502-.09.854-.19 1.106-.342.352-.211 1.006-.956 2.133-2.063.706-.744 1.388-1.258 1.59-1.761.2-.755-.101-1.158-.554-1.57Z", opacity: 0.93 })));
|
|
2330
|
-
|
|
2331
2327
|
const SvgFolderIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
|
|
2332
2328
|
title ? React__namespace.createElement("title", { id: titleId }, title) : null,
|
|
2333
2329
|
React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M6.667 5.833h7.292c1.755 0 2.633 0 3.264.422a2.5 2.5 0 0 1 .69.69c.42.63.42 1.508.42 3.263 0 2.926 0 4.39-.702 5.44a4.2 4.2 0 0 1-1.15 1.15c-1.05.702-2.513.702-5.439.702H10c-3.928 0-5.892 0-7.113-1.22-1.22-1.22-1.22-3.185-1.22-7.113V6.62c0-1.514 0-2.27.317-2.838a2.5 2.5 0 0 1 .965-.965C3.517 2.5 4.273 2.5 5.787 2.5c.97 0 1.455 0 1.88.16.968.363 1.368 1.243 1.805 2.118L10 5.833" })));
|
|
2334
2330
|
|
|
2335
|
-
const
|
|
2331
|
+
const SvgKeyboardCurveRightArrowIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
|
|
2336
2332
|
title ? React__namespace.createElement("title", { id: titleId }, title) : null,
|
|
2337
|
-
React__namespace.createElement("
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2333
|
+
React__namespace.createElement("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" })));
|
|
2334
|
+
|
|
2335
|
+
const SvgLogoutAltIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
|
|
2336
|
+
title ? React__namespace.createElement("title", { id: titleId }, title) : null,
|
|
2337
|
+
React__namespace.createElement("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" }),
|
|
2338
|
+
React__namespace.createElement("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" })));
|
|
2342
2339
|
|
|
2343
2340
|
const SvgMessageIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
|
|
2344
2341
|
title ? React__namespace.createElement("title", { id: titleId }, title) : null,
|
|
@@ -2346,15 +2343,54 @@ const SvgMessageIcon = ({ title, titleId, ...props }) => (React__namespace.creat
|
|
|
2346
2343
|
React__namespace.createElement("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" }),
|
|
2347
2344
|
React__namespace.createElement("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" })));
|
|
2348
2345
|
|
|
2346
|
+
const SvgMoonHalfIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
|
|
2347
|
+
title ? React__namespace.createElement("title", { id: titleId }, title) : null,
|
|
2348
|
+
React__namespace.createElement("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" })));
|
|
2349
|
+
|
|
2349
2350
|
const SvgNewsFeedIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
|
|
2350
2351
|
title ? React__namespace.createElement("title", { id: titleId }, title) : null,
|
|
2351
2352
|
React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M15 12.5v-5c0-2.357 0-3.536-.732-4.268S12.358 2.5 10 2.5H6.667c-2.357 0-3.536 0-4.268.732S1.667 5.143 1.667 7.5v5c0 2.357 0 3.535.732 4.268s1.911.732 4.268.732h10M5 6.667h6.667M5 10h6.667M5 13.333h3.333" }),
|
|
2352
2353
|
React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M15 6.667h.833c1.179 0 1.768 0 2.134.366s.366.955.366 2.134v6.666a1.667 1.667 0 1 1-3.333 0z" })));
|
|
2353
2354
|
|
|
2355
|
+
const SvgNoteIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
|
|
2356
|
+
title ? React__namespace.createElement("title", { id: titleId }, title) : null,
|
|
2357
|
+
React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M8.574 18.301h-.748c-2.707 0-4.061 0-4.902-.854s-.841-2.23-.841-4.98V8.302c0-2.75 0-4.125.841-4.979s2.195-.854 4.902-.854h2.46c2.708 0 4.29.046 5.13.9.841.854.834 2.183.834 4.933v.989M13.287 1.667v1.666M9.121 1.667v1.666M4.954 1.667v1.666" }),
|
|
2358
|
+
React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.5, d: "M5.833 12.5h3.333M5.833 8.333H12.5" }),
|
|
2359
|
+
React__namespace.createElement("path", { stroke: "currentColor", strokeWidth: 1.5, d: "M17.3 12.399c-.755-.846-1.207-.795-1.71-.644-.352.05-1.56 1.459-2.063 1.908-.825.816-1.655 1.656-1.71 1.765-.156.254-.302.705-.372 1.208-.13.755-.32 1.604-.08 1.677.239.073.905-.067 1.66-.178.502-.09.854-.19 1.106-.342.352-.211 1.006-.956 2.133-2.063.706-.744 1.388-1.258 1.59-1.761.2-.755-.101-1.158-.554-1.57Z", opacity: 0.93 })));
|
|
2360
|
+
|
|
2354
2361
|
const SvgPartsIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
|
|
2355
2362
|
title ? React__namespace.createElement("title", { id: titleId }, title) : null,
|
|
2356
2363
|
React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeMiterlimit: 10, strokeWidth: 1.5, d: "M12.162 3.333H10.58a1 1 0 0 0-1 1v6.878a1 1 0 0 0 1 1h1.583a1 1 0 0 0 1-1V4.333a1 1 0 0 0-1-1M17.1 7.772h-3.938M9.58 5.98H6.65M9.58 9.25H6.65M4.506 11.49v4.438M2.5 13.708h4.151" })));
|
|
2357
2364
|
|
|
2365
|
+
const SvgReferIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
|
|
2366
|
+
title ? React__namespace.createElement("title", { id: titleId }, title) : null,
|
|
2367
|
+
React__namespace.createElement("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" }),
|
|
2368
|
+
React__namespace.createElement("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" })));
|
|
2369
|
+
|
|
2370
|
+
const SvgSettingOutlineIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
|
|
2371
|
+
title ? React__namespace.createElement("title", { id: titleId }, title) : null,
|
|
2372
|
+
React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.667, d: "M11.159 3.99c-1.171-.21-1.208-1.678-2.38-1.47-1.17.21-.7 1.597-1.737 2.193s-2.006-.507-2.767.403c-.76.91.492 1.678.082 2.797C3.947 9.03 2.5 8.815 2.5 10s1.454.97 1.857 2.088-.85 1.887-.082 2.797 1.738-.187 2.767.403c1.03.589.56 1.99 1.738 2.192s1.208-1.26 2.379-1.469c1.17-.209 1.708 1.163 2.737.567s.112-1.745.88-2.655 2.058-.209 2.461-1.328-1.037-1.41-1.037-2.603 1.44-1.484 1.037-2.602c-.403-1.12-1.7-.418-2.461-1.328s.142-2.185-.94-2.685-1.506.806-2.677.597z" }),
|
|
2373
|
+
React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.667, d: "M10.1 12.432a2.431 2.431 0 1 0 0-4.863 2.431 2.431 0 0 0 0 4.863" })));
|
|
2374
|
+
|
|
2375
|
+
const SvgTagIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
|
|
2376
|
+
title ? React__namespace.createElement("title", { id: titleId }, title) : null,
|
|
2377
|
+
React__namespace.createElement("g", { stroke: "currentColor", strokeWidth: 1.5, clipPath: "url(#tag-icon_svg__a)" },
|
|
2378
|
+
React__namespace.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M14.583 4.167a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5" }),
|
|
2379
|
+
React__namespace.createElement("path", { d: "M2.312 9.287c-.836.933-.854 2.342-.087 3.333a28.3 28.3 0 0 0 5.156 5.155c.99.767 2.4.75 3.333-.087a77 77 0 0 0 7.096-7.248c.222-.258.36-.574.391-.912.138-1.496.42-5.807-.75-6.978-1.171-1.171-5.482-.888-6.979-.751-.338.031-.654.17-.912.391a77 77 0 0 0-7.248 7.097Z" }),
|
|
2380
|
+
React__namespace.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "m5.833 11.667 2.5 2.5" })),
|
|
2381
|
+
React__namespace.createElement("defs", null,
|
|
2382
|
+
React__namespace.createElement("clipPath", { id: "tag-icon_svg__a" },
|
|
2383
|
+
React__namespace.createElement("path", { fill: "currentColor", d: "M0 0h20v20H0z" })))));
|
|
2384
|
+
|
|
2385
|
+
const SvgUserCaptureIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
|
|
2386
|
+
title ? React__namespace.createElement("title", { id: titleId }, title) : null,
|
|
2387
|
+
React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.667, d: "M7.612 2.083c-2.222.05-3.52.262-4.406 1.146-.776.773-1.036 1.86-1.122 3.604m10.304-4.75c2.222.05 3.52.262 4.407 1.146.776.773 1.035 1.86 1.122 3.604m-5.529 11.084c2.222-.051 3.52-.263 4.407-1.146.776-.774 1.035-1.86 1.122-3.604m-10.305 4.75c-2.222-.051-3.52-.263-4.406-1.146-.776-.774-1.036-1.86-1.122-3.604" }),
|
|
2388
|
+
React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeWidth: 1.667, d: "M6.25 14.167c1.943-2.036 5.536-2.131 7.5 0m-1.67-6.25c0 1.15-.935 2.083-2.087 2.083a2.085 2.085 0 0 1-2.086-2.083c0-1.151.934-2.084 2.086-2.084s2.086.933 2.086 2.084Z" })));
|
|
2389
|
+
|
|
2390
|
+
const SvgUserOutlineIcon = ({ title, titleId, ...props }) => (React__namespace.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "1em", height: "1em", fill: "none", viewBox: "0 0 20 20", "aria-labelledby": titleId, ...props },
|
|
2391
|
+
title ? React__namespace.createElement("title", { id: titleId }, title) : null,
|
|
2392
|
+
React__namespace.createElement("path", { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.667, d: "M10.024 9.429a3.677 3.677 0 1 0 0-7.354 3.677 3.677 0 0 0 0 7.354M4.02 16.49c-.657-.53-.813-1.469-.238-2.086 1.06-1.137 3.026-2.702 5.893-2.827 3.121-.144 5.34 1.507 6.505 2.671.585.586.486 1.511-.12 2.076l-1.222 1.137a1.67 1.67 0 0 1-1.135.447H6.37c-.38 0-.749-.13-1.045-.368z" })));
|
|
2393
|
+
|
|
2358
2394
|
exports.AccountBalanceWalletIcon = AccountBalanceWalletIcon;
|
|
2359
2395
|
exports.AccountTreeIcon = AccountTreeIcon;
|
|
2360
2396
|
exports.AddImageIcon = AddImageIcon;
|
|
@@ -2389,6 +2425,7 @@ exports.ArduinoIcon = ArduinoIcon;
|
|
|
2389
2425
|
exports.ArrowBackwardIcon = ArrowBackwardIcon;
|
|
2390
2426
|
exports.ArrowDownwardIcon = ArrowDownwardIcon;
|
|
2391
2427
|
exports.ArrowForwardIcon = ArrowForwordIcon;
|
|
2428
|
+
exports.ArrowLeftThinIcon = SvgArrowLeftThinIcon;
|
|
2392
2429
|
exports.ArrowSelectorToolIcon = SvgArrowSelectorToolIcon;
|
|
2393
2430
|
exports.ArrowUpDownIcon = ArrowUpDownIcon;
|
|
2394
2431
|
exports.ArrowUpwardIcon = ArrowUpwordIcon;
|
|
@@ -2595,6 +2632,7 @@ exports.KeyboardArrowLeftAltIcon = KeyboradArrowLeftAltIcon;
|
|
|
2595
2632
|
exports.KeyboardArrowRightAltIcon = KeyboardArrowRightAltIcon;
|
|
2596
2633
|
exports.KeyboardArrowRightIcon = KeyboardArrowRightIcon;
|
|
2597
2634
|
exports.KeyboardArrowUpAltIcon = KeyboardArrowUpAltIcon;
|
|
2635
|
+
exports.KeyboardCurveRightArrowIcon = SvgKeyboardCurveRightArrowIcon;
|
|
2598
2636
|
exports.KeyboardUpDownIcon = KeyboardUpDownIcon;
|
|
2599
2637
|
exports.LabelIcon = SvgLabelIcon;
|
|
2600
2638
|
exports.LeftIcon = SvgLeftIcon;
|
|
@@ -2608,6 +2646,7 @@ exports.LocationOutlineIcon = LocationOutlineIcon;
|
|
|
2608
2646
|
exports.LockIcon = LockIcon;
|
|
2609
2647
|
exports.LoftIcon = SvgLoftIcon;
|
|
2610
2648
|
exports.LogoutAltIcon = LogoutAltIcon;
|
|
2649
|
+
exports.LogoutCurveIcon = SvgLogoutAltIcon;
|
|
2611
2650
|
exports.LogoutIcon = LogoutIcon;
|
|
2612
2651
|
exports.MailAltIcon = SvgMailAltIcon;
|
|
2613
2652
|
exports.MailIcon = SvgMailIcon;
|
|
@@ -2630,6 +2669,7 @@ exports.ModesIcon = SvgModesIcon;
|
|
|
2630
2669
|
exports.ModifyIcon = SvgModifyIcon;
|
|
2631
2670
|
exports.ModuleIcon = SvgModuleIcon;
|
|
2632
2671
|
exports.ModulerIcon = SvgModulerIcon;
|
|
2672
|
+
exports.MoonHalfIcon = SvgMoonHalfIcon;
|
|
2633
2673
|
exports.MountingHolesIcon = SvgMountingHolesIcon;
|
|
2634
2674
|
exports.MoveAltIcon = SvgMoveAltIcon;
|
|
2635
2675
|
exports.MoveComponentIcon = SvgMoveComponentIcon;
|
|
@@ -2707,6 +2747,7 @@ exports.RectangleBy3XPIcon = SvgRectangleBy3XPIcon;
|
|
|
2707
2747
|
exports.RectangleByCenterIcon = SvgRectangleByCenterIcon;
|
|
2708
2748
|
exports.RectangleIcon = SvgRectangleIcon;
|
|
2709
2749
|
exports.RedoIcon = RedoIcon;
|
|
2750
|
+
exports.ReferAltIcon = SvgReferIcon;
|
|
2710
2751
|
exports.ReferIcon = ReferIcon;
|
|
2711
2752
|
exports.RelationshipColoursIcon = SvgRelationshipColoursIcon;
|
|
2712
2753
|
exports.ReloadAltIcon = ReloadAltIcon;
|
|
@@ -2747,6 +2788,7 @@ exports.SelectVisiblePartIcon = SelectVisiblePartIcon;
|
|
|
2747
2788
|
exports.SendAltIcon = SendAltIcon;
|
|
2748
2789
|
exports.SendIcon = SendIcon;
|
|
2749
2790
|
exports.SettingIcon = SettingIcon;
|
|
2791
|
+
exports.SettingOutlineIcon = SvgSettingOutlineIcon;
|
|
2750
2792
|
exports.SettingsApplicationIcon = SettingsApplicationIcon;
|
|
2751
2793
|
exports.ShareAltIcon = ShareAltIcon;
|
|
2752
2794
|
exports.ShareIcon = ShareIcon;
|
|
@@ -2816,11 +2858,13 @@ exports.TwitterIcon = TwitterIcon;
|
|
|
2816
2858
|
exports.UndoIcon = UndoIcon;
|
|
2817
2859
|
exports.UnionIcon = SvgUnionIcon;
|
|
2818
2860
|
exports.UploadIcon = UploadIcon;
|
|
2861
|
+
exports.UserCaptureAltIcon = SvgUserCaptureIcon;
|
|
2819
2862
|
exports.UserCaptureIcon = UserCaptureIcon;
|
|
2820
2863
|
exports.UserDoubleIcon = UserDoubleIcon;
|
|
2821
2864
|
exports.UserGroupAltIcon = UserGroupAltIcon;
|
|
2822
2865
|
exports.UserGroupIcon = UserGroupIcon;
|
|
2823
2866
|
exports.UserOutlineIcon = UserOutlineIcon;
|
|
2867
|
+
exports.UserSmallIcon = SvgUserOutlineIcon;
|
|
2824
2868
|
exports.VccIcon = SvgVccIcon;
|
|
2825
2869
|
exports.VerifiedAltFillIcon = SvgVerifiedAltFillIcon;
|
|
2826
2870
|
exports.VerifiedIcon = VerifiedIcon;
|