@sberbusiness/icons-next 1.17.0 → 1.18.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.
Files changed (71) hide show
  1. package/ArchiveStrokeSrvIcon20.d.ts +4 -0
  2. package/ArchiveStrokeSrvIcon20.js +10 -0
  3. package/ArchiveStrokeSrvIcon24.d.ts +4 -0
  4. package/ArchiveStrokeSrvIcon24.js +10 -0
  5. package/ArchiveStrokeSrvIcon32.d.ts +4 -0
  6. package/ArchiveStrokeSrvIcon32.js +12 -0
  7. package/CalendarStrokeSrvIcon16.js +1 -1
  8. package/CalendardoneMrkIcon128.d.ts +4 -0
  9. package/CalendardoneMrkIcon128.js +45 -0
  10. package/CalendardoneMrkIcon96.d.ts +4 -0
  11. package/CalendardoneMrkIcon96.js +45 -0
  12. package/CallcheckMrkIcon96.d.ts +4 -0
  13. package/CallcheckMrkIcon96.js +78 -0
  14. package/CaretleftdoubleStrokeSrvIcon16.d.ts +4 -0
  15. package/CaretleftdoubleStrokeSrvIcon16.js +10 -0
  16. package/CaretleftdoubleStrokeSrvIcon20.d.ts +4 -0
  17. package/CaretleftdoubleStrokeSrvIcon20.js +10 -0
  18. package/ComplianceassistantStrokePrdIcon20.d.ts +4 -0
  19. package/ComplianceassistantStrokePrdIcon20.js +10 -0
  20. package/ComplianceassistantStrokePrdIcon32.d.ts +4 -0
  21. package/ComplianceassistantStrokePrdIcon32.js +10 -0
  22. package/DigitalrubleStrokePrdIcon20.js +1 -1
  23. package/DigitalrubleStrokePrdIcon32.js +2 -2
  24. package/Error404SysIcon96.d.ts +4 -0
  25. package/Error404SysIcon96.js +70 -0
  26. package/GotologinMrkIcon96.js +2 -2
  27. package/InvisibleStrokeSrvIcon32.js +2 -2
  28. package/OverdraftStrokePrdIcon20.d.ts +4 -0
  29. package/OverdraftStrokePrdIcon20.js +9 -0
  30. package/OverdraftStrokePrdIcon32.d.ts +4 -0
  31. package/OverdraftStrokePrdIcon32.js +9 -0
  32. package/PaymentbycreditStrokePrdIcon20.d.ts +4 -0
  33. package/PaymentbycreditStrokePrdIcon20.js +10 -0
  34. package/PaymentbycreditStrokePrdIcon32.d.ts +4 -0
  35. package/PaymentbycreditStrokePrdIcon32.js +11 -0
  36. package/PinMapIcon32.d.ts +4 -0
  37. package/PinMapIcon32.js +19 -0
  38. package/PinStrokeSrvIcon16.d.ts +4 -0
  39. package/PinStrokeSrvIcon16.js +9 -0
  40. package/PinStrokeSrvIcon20.d.ts +4 -0
  41. package/PinStrokeSrvIcon20.js +13 -0
  42. package/PinclosedMapIcon32.d.ts +4 -0
  43. package/PinclosedMapIcon32.js +19 -0
  44. package/PinclosedselectedMapIcon48.d.ts +4 -0
  45. package/PinclosedselectedMapIcon48.js +19 -0
  46. package/PinselectedMapIcon48.d.ts +4 -0
  47. package/PinselectedMapIcon48.js +19 -0
  48. package/PrivilegeStrokePrdIcon20.d.ts +4 -0
  49. package/PrivilegeStrokePrdIcon20.js +10 -0
  50. package/PrivilegeStrokePrdIcon32.d.ts +4 -0
  51. package/PrivilegeStrokePrdIcon32.js +10 -0
  52. package/ReferralprogrammStrokePrdIcon20.d.ts +4 -0
  53. package/ReferralprogrammStrokePrdIcon20.js +12 -0
  54. package/ReferralprogrammStrokePrdIcon32.d.ts +4 -0
  55. package/ReferralprogrammStrokePrdIcon32.js +13 -0
  56. package/RiskofblockingStrokePrdIcon20.d.ts +1 -0
  57. package/RiskofblockingStrokePrdIcon20.js +1 -0
  58. package/RiskofblockingStrokePrdIcon32.d.ts +1 -0
  59. package/RiskofblockingStrokePrdIcon32.js +1 -0
  60. package/TariffmanageStrokePrdIcon32.js +3 -3
  61. package/TickmessageStrokeSrvIcon16.d.ts +4 -0
  62. package/TickmessageStrokeSrvIcon16.js +9 -0
  63. package/TickmessagedoubleStrokeSrvIcon16.d.ts +4 -0
  64. package/TickmessagedoubleStrokeSrvIcon16.js +9 -0
  65. package/VulnerabilitycheckMrkIcon96.d.ts +4 -0
  66. package/VulnerabilitycheckMrkIcon96.js +70 -0
  67. package/index.d.ts +28 -0
  68. package/index.js +28 -0
  69. package/package.json +1 -1
  70. package/styles/icons.css +1 -1
  71. package/utils/getPathClassName.js +24 -24
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const ArchiveStrokeSrvIcon20: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default ArchiveStrokeSrvIcon20;
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const ArchiveStrokeSrvIcon20 = React.forwardRef(({ paletteIndex, ...restProps }, ref) => {
5
+ const pathClassName = getPathClassName(paletteIndex, useTheme());
6
+ return React.createElement("svg", { width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", name: "ArchiveStrokeSrvIcon20", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, d: "M11 8a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2zM13 4a1 1 0 1 1 0 2H7a1 1 0 0 1 0-2z" }),
8
+ React.createElement("path", { className: pathClassName, d: "M16 7.5V3a1 1 0 0 0-1-1H5a1 1 0 0 0-1 1v4.5a1 1 0 0 1-2 0V3a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v4.5a1 1 0 1 1-2 0M18 13a1 1 0 0 0-1-1h-2.231c.01 0 .002-.005-.028.017a.4.4 0 0 0-.113.143C13.796 13.85 12.028 15 10 15s-3.797-1.15-4.628-2.84a.4.4 0 0 0-.113-.143C5.229 11.995 5.22 12 5.23 12H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1zm2 4a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3v-4a3 3 0 0 1 3-3h2.231c.938 0 1.619.633 1.936 1.277C7.663 12.286 8.737 13 10 13s2.337-.714 2.833-1.723c.317-.644.998-1.277 1.936-1.277H17a3 3 0 0 1 3 3z" }));
9
+ });
10
+ export default ArchiveStrokeSrvIcon20;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const ArchiveStrokeSrvIcon24: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default ArchiveStrokeSrvIcon24;
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const ArchiveStrokeSrvIcon24 = React.forwardRef(({ paletteIndex, ...restProps }, ref) => {
5
+ const pathClassName = getPathClassName(paletteIndex, useTheme());
6
+ return React.createElement("svg", { width: "24", height: "24", fill: "none", viewBox: "0 0 24 24", name: "ArchiveStrokeSrvIcon24", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, d: "M13 10a1 1 0 1 1 0 2h-2a1 1 0 1 1 0-2zM15 6a1 1 0 1 1 0 2H9a1 1 0 0 1 0-2z" }),
8
+ React.createElement("path", { className: pathClassName, d: "M18 9.5V5a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v4.5a1 1 0 1 1-2 0V5a3 3 0 0 1 3-3h10a3 3 0 0 1 3 3v4.5a1 1 0 1 1-2 0M20 15a1 1 0 0 0-1-1h-2.231c.01 0 .002-.005-.028.017a.4.4 0 0 0-.113.143C15.796 15.85 14.028 17 12 17s-3.797-1.15-4.628-2.84a.4.4 0 0 0-.113-.143C7.229 13.995 7.22 14 7.23 14H5a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1zm2 4a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3v-4a3 3 0 0 1 3-3h2.231c.938 0 1.619.633 1.936 1.277C9.663 14.286 10.737 15 12 15s2.337-.714 2.833-1.723c.317-.644.998-1.277 1.936-1.277H19a3 3 0 0 1 3 3z" }));
9
+ });
10
+ export default ArchiveStrokeSrvIcon24;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const ArchiveStrokeSrvIcon32: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default ArchiveStrokeSrvIcon32;
@@ -0,0 +1,12 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const ArchiveStrokeSrvIcon32 = React.forwardRef(({ paletteIndex, ...restProps }, ref) => {
5
+ const pathClassName = getPathClassName(paletteIndex, useTheme());
6
+ return React.createElement("svg", { width: "32", height: "32", fill: "none", viewBox: "0 0 32 32", name: "ArchiveStrokeSrvIcon32", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M10.186 16c.977 0 1.692.684 1.977 1.418C12.747 18.919 14.238 20 16 20s3.253-1.08 3.837-2.582c.285-.734 1-1.418 1.977-1.418H25a3 3 0 0 1 3 3v6a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3v-6a3 3 0 0 1 3-3zM7 18a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h18a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1h-3.186c.008 0 .002-.004-.023.015a.3.3 0 0 0-.09.128C20.821 20.406 18.594 22 16 22s-4.821-1.594-5.701-3.857a.3.3 0 0 0-.09-.128c-.024-.02-.031-.015-.024-.015z", clipRule: "evenodd" }),
8
+ React.createElement("path", { className: pathClassName, d: "M18 13a1 1 0 1 1 0 2h-4a1 1 0 1 1 0-2z" }),
9
+ React.createElement("path", { className: pathClassName, d: "M22 4a3 3 0 0 1 3 3v6a1 1 0 1 1-2 0V7a1 1 0 0 0-1-1H10a1 1 0 0 0-1 1v6a1 1 0 1 1-2 0V7a3 3 0 0 1 3-3z" }),
10
+ React.createElement("path", { className: pathClassName, d: "M20 9a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2z" }));
11
+ });
12
+ export default ArchiveStrokeSrvIcon32;
@@ -4,6 +4,6 @@ import getPathClassName from "./utils/getPathClassName";
4
4
  const CalendarStrokeSrvIcon16 = React.forwardRef(({ paletteIndex, ...restProps }, ref) => {
5
5
  const pathClassName = getPathClassName(paletteIndex, useTheme());
6
6
  return React.createElement("svg", { width: "16", height: "16", fill: "none", viewBox: "0 0 16 16", name: "CalendarStrokeSrvIcon16", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
- React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M6 1v1h4V1c0-.57.44-1 1-1s1 .43 1 1v1h1c.21 0 .43.02.63.06.18.04.36.1.53.17.18.07.34.16.49.26.17.11.32.24.47.38a3.1 3.1 0 0 1 .81 1.49c.04.2.07.42.07.64v8c0 .21-.03.43-.07.63-.04.18-.1.36-.17.53-.07.18-.16.34-.26.49-.11.17-.24.32-.38.47-.28.27-.6.49-.96.64-.37.16-.76.24-1.16.24H3c-.22 0-.44-.03-.64-.07-.18-.04-.36-.1-.53-.17-.18-.07-.34-.16-.49-.26-.17-.11-.32-.24-.47-.38a3.1 3.1 0 0 1-.81-1.49C.02 13.43 0 13.21 0 13V5c0-.22.02-.44.06-.64.04-.18.1-.36.17-.53.07-.18.16-.34.26-.49.11-.17.24-.32.38-.47.15-.14.3-.27.47-.38.15-.1.31-.19.49-.26.17-.07.35-.13.53-.17.2-.04.42-.06.64-.06h1V1c0-.57.44-1 1-1s1 .43 1 1m4 3v1c0 .56.44 1 1 1s1-.44 1-1V4h1c.13 0 .26.02.38.07.06.03.11.05.15.08a1.2 1.2 0 0 1 .31.31c.03.04.05.09.08.15.05.12.08.25.08.39v2H2V5c0-.09 0-.17.02-.25.02-.05.03-.1.05-.14.03-.06.05-.11.08-.15a1.2 1.2 0 0 1 .31-.31c.04-.03.09-.05.15-.08.04-.02.09-.03.14-.05C2.83 4 2.91 4 3 4h1v1c0 .56.44 1 1 1s1-.44 1-1V4zM2 9v4c0 .13.02.26.07.38.03.06.05.11.08.15.04.06.09.12.14.17.09.09.2.17.32.22.04.02.09.03.14.05.08.02.16.03.25.03h10c.13 0 .26-.03.38-.08.06-.03.11-.05.15-.08.06-.04.12-.09.17-.14a.995.995 0 0 0 .3-.7V9z", clipRule: "evenodd" }));
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M6 1.5V2h4v-.5c0-.57.44-1 1-1s1 .43 1 1V2h1c.21 0 .43.02.63.06.18.04.36.1.53.17.18.07.34.16.49.26.17.11.32.24.47.38a3.1 3.1 0 0 1 .81 1.49c.04.2.07.42.07.64v8c0 .21-.03.43-.07.63-.04.18-.1.36-.17.53-.07.18-.16.34-.26.49-.11.17-.24.32-.38.47-.28.27-.6.49-.96.64-.37.16-.76.24-1.16.24H3c-.22 0-.44-.03-.64-.07-.18-.04-.36-.1-.53-.17-.18-.07-.34-.16-.49-.26-.17-.11-.32-.24-.47-.38a3.1 3.1 0 0 1-.81-1.49C.02 13.43 0 13.21 0 13V5c0-.22.02-.44.06-.64.04-.18.1-.36.17-.53.07-.18.16-.34.26-.49.11-.17.24-.32.38-.47.15-.14.3-.27.47-.38.15-.1.31-.19.49-.26.17-.07.35-.13.53-.17.2-.04.42-.06.64-.06h1v-.5c0-.57.44-1 1-1s1 .43 1 1M10 4v.5c0 .56.44 1 1 1s1-.44 1-1V4h1c.13 0 .26.02.38.07.06.03.11.05.15.08a1.2 1.2 0 0 1 .31.31c.03.04.05.09.08.15.05.12.08.25.08.39v2H2V5c0-.09 0-.17.02-.25.02-.05.03-.1.05-.14.03-.06.05-.11.08-.15a1.2 1.2 0 0 1 .31-.31c.04-.03.09-.05.15-.08.04-.02.09-.03.14-.05C2.83 4 2.91 4 3 4h1v.61c0 .56.44 1 1 1s1-.44 1-1V4zM2 9v4c0 .13.02.26.07.38.03.06.05.11.08.15.04.06.09.12.14.17.09.09.2.17.32.22.04.02.09.03.14.05.08.02.16.03.25.03h10c.13 0 .26-.03.38-.08.06-.03.11-.05.15-.08.06-.04.12-.09.17-.14a.995.995 0 0 0 .3-.7V9z", clipRule: "evenodd" }));
8
8
  });
9
9
  export default CalendarStrokeSrvIcon16;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { IMultiColorIconProps } from "./types";
3
+ declare const CalendardoneMrkIcon128: React.ForwardRefExoticComponent<IMultiColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default CalendardoneMrkIcon128;
@@ -0,0 +1,45 @@
1
+ import React from "react";
2
+ import { useTheme, EIconsTheme } from "./ThemeProvider";
3
+ const CalendardoneMrkIcon128 = React.forwardRef((props, ref) => {
4
+ const theme = useTheme();
5
+ switch (theme) {
6
+ case EIconsTheme.LIGHT:
7
+ return React.createElement("svg", { width: "128", height: "128", fill: "none", viewBox: "0 0 128 128", name: "CalendardoneMrkIcon128", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
8
+ React.createElement("circle", { cx: "82", cy: "77", r: "30", fill: "#21A19A" }),
9
+ React.createElement("path", { fill: "url(#a_calendardone128)", d: "M99 87a8 8 0 0 1-8 8H25a8 8 0 0 1-8-8V29a8 8 0 0 1 8-8h66a8 8 0 0 1 8 8z" }),
10
+ React.createElement("path", { fill: "#fff", d: "M87.474 63.718a2 2 0 0 1 3.072 2.563l-15.01 18c-.118.141-.253.26-.397.36l-.045.032a2 2 0 0 1-.117.07l-.052.03a2 2 0 0 1-.467.171q-.042.011-.085.02-.028.005-.055.008-.068.012-.134.019-.045.003-.09.004-.05.003-.1.004-.058-.001-.117-.005l-.072-.004q-.166-.016-.327-.062-.026-.005-.052-.012a2 2 0 0 1-.474-.214l-.061-.038q-.036-.025-.07-.052-.048-.034-.094-.07l-.008-.006a2 2 0 0 1-.158-.148l-7.975-7.974a2 2 0 1 1 2.828-2.828l6.451 6.45z" }),
11
+ React.createElement("path", { fill: "url(#b_calendardone128)", d: "M99 38H17v-9a8 8 0 0 1 8-8h66a8 8 0 0 1 8 8z" }),
12
+ React.createElement("path", { fill: "#fff", fillOpacity: ".3", d: "M33 55a4 4 0 1 1 8 0 4 4 0 0 1-8 0" }),
13
+ React.createElement("rect", { width: "8", height: "8", x: "47", y: "51", fill: "#fff", fillOpacity: ".65", rx: "4" }),
14
+ React.createElement("rect", { width: "8", height: "8", x: "61", y: "51", fill: "#fff", fillOpacity: ".65", rx: "4" }),
15
+ React.createElement("rect", { width: "8", height: "8", x: "75", y: "51", fill: "#fff", fillOpacity: ".3", rx: "4" }),
16
+ React.createElement("rect", { width: "8", height: "8", x: "33", y: "67", fill: "#fff", fillOpacity: ".65", rx: "4" }),
17
+ React.createElement("path", { fill: "#fff", fillOpacity: ".3", d: "M47 71a4 4 0 1 1 8 0 4 4 0 0 1-8 0" }),
18
+ React.createElement("defs", null,
19
+ React.createElement("radialGradient", { id: "a_calendardone128", cx: "0", cy: "0", r: "1", gradientTransform: "matrix(-51.0222 -45.325 54.7418 -63.5158 83.967 78.35)", gradientUnits: "userSpaceOnUse" },
20
+ React.createElement("stop", { stopColor: "#50BEB8" }),
21
+ React.createElement("stop", { offset: ".861", stopColor: "#D6DEED" })),
22
+ React.createElement("radialGradient", { id: "b_calendardone128", cx: "0", cy: "0", r: "1", gradientTransform: "matrix(-53.8434 -35.1087 58.5722 -50.2782 75.783 55)", gradientUnits: "userSpaceOnUse" },
23
+ React.createElement("stop", { stopColor: "#50BEB8" }),
24
+ React.createElement("stop", { offset: ".861", stopColor: "#D6DEED" }))));
25
+ case EIconsTheme.DARK:
26
+ return React.createElement("svg", { width: "128", height: "128", fill: "none", viewBox: "0 0 128 128", name: "CalendardoneMrkIcon128", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
27
+ React.createElement("circle", { cx: "82", cy: "77", r: "30", fill: "#21A19A" }),
28
+ React.createElement("path", { fill: "url(#a_calendardone128)", d: "M99 87a8 8 0 0 1-8 8H25a8 8 0 0 1-8-8V29a8 8 0 0 1 8-8h66a8 8 0 0 1 8 8z" }),
29
+ React.createElement("path", { fill: "#fff", d: "M87.474 63.718a2 2 0 0 1 3.072 2.563l-15.01 18q-.182.216-.406.367l-.035.026q-.058.037-.118.069l-.052.03q-.141.074-.292.122a2 2 0 0 1-.26.07l-.055.007q-.068.012-.134.019-.045.003-.09.004-.05.003-.1.004-.058-.001-.117-.005l-.072-.004q-.166-.016-.327-.062-.026-.005-.052-.012a2 2 0 0 1-.474-.214l-.061-.038q-.036-.025-.07-.052-.048-.034-.094-.07l-.008-.006a2 2 0 0 1-.158-.148l-7.975-7.974a2 2 0 1 1 2.828-2.828l6.451 6.45z" }),
30
+ React.createElement("path", { fill: "url(#b_calendardone128)", d: "M99 38H17v-9a8 8 0 0 1 8-8h66a8 8 0 0 1 8 8z" }),
31
+ React.createElement("path", { fill: "#fff", fillOpacity: ".25", d: "M33 55a4 4 0 1 1 8 0 4 4 0 0 1-8 0" }),
32
+ React.createElement("path", { fill: "#fff", fillOpacity: ".45", d: "M47 55a4 4 0 1 1 8 0 4 4 0 0 1-8 0M61 55a4 4 0 1 1 8 0 4 4 0 0 1-8 0" }),
33
+ React.createElement("rect", { width: "8", height: "8", x: "75", y: "51", fill: "#fff", fillOpacity: ".25", rx: "4" }),
34
+ React.createElement("path", { fill: "#fff", fillOpacity: ".45", d: "M33 71a4 4 0 1 1 8 0 4 4 0 0 1-8 0" }),
35
+ React.createElement("path", { fill: "#fff", fillOpacity: ".25", d: "M47 71a4 4 0 1 1 8 0 4 4 0 0 1-8 0" }),
36
+ React.createElement("defs", null,
37
+ React.createElement("radialGradient", { id: "a_calendardone128", cx: "0", cy: "0", r: "1", gradientTransform: "matrix(-51.0222 -45.325 54.7418 -63.5158 83.967 78.35)", gradientUnits: "userSpaceOnUse" },
38
+ React.createElement("stop", { stopColor: "#50BEB8" }),
39
+ React.createElement("stop", { offset: ".861", stopColor: "#373C49" })),
40
+ React.createElement("radialGradient", { id: "b_calendardone128", cx: "0", cy: "0", r: "1", gradientTransform: "matrix(-48.2831 -31.5 52.5431 -45.0804 75.783 55)", gradientUnits: "userSpaceOnUse" },
41
+ React.createElement("stop", { stopColor: "#50BEB8" }),
42
+ React.createElement("stop", { offset: "1", stopColor: "#373C49" }))));
43
+ }
44
+ });
45
+ export default CalendardoneMrkIcon128;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { IMultiColorIconProps } from "./types";
3
+ declare const CalendardoneMrkIcon96: React.ForwardRefExoticComponent<IMultiColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default CalendardoneMrkIcon96;
@@ -0,0 +1,45 @@
1
+ import React from "react";
2
+ import { useTheme, EIconsTheme } from "./ThemeProvider";
3
+ const CalendardoneMrkIcon96 = React.forwardRef((props, ref) => {
4
+ const theme = useTheme();
5
+ switch (theme) {
6
+ case EIconsTheme.LIGHT:
7
+ return React.createElement("svg", { width: "96", height: "96", fill: "none", viewBox: "0 0 96 96", name: "CalendardoneMrkIcon96", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
8
+ React.createElement("circle", { cx: "62", cy: "58", r: "22", fill: "#21A19A" }),
9
+ React.createElement("path", { fill: "url(#a_calendardone96)", d: "M75 65a6 6 0 0 1-6 6H19a6 6 0 0 1-6-6V22a6 6 0 0 1 6-6h50a6 6 0 0 1 6 6z" }),
10
+ React.createElement("path", { fill: "#fff", d: "M65.606 47.79a1.5 1.5 0 0 1 2.303 1.921l-11.257 13.5c-.226.271-.527.44-.848.507l-.02.005-.107.015-.036.005q-.045.004-.088.004l-.058.002q-.206 0-.407-.058l-.017-.004a1.5 1.5 0 0 1-.653-.398l-5.978-5.978a1.5 1.5 0 1 1 2.12-2.121l4.839 4.837z" }),
11
+ React.createElement("path", { fill: "url(#b_calendardone96)", d: "M75 29H13v-7a6 6 0 0 1 6-6h50a6 6 0 0 1 6 6z" }),
12
+ React.createElement("path", { fill: "#fff", fillOpacity: ".3", d: "M26 41a3 3 0 1 1 6 0 3 3 0 0 1-6 0" }),
13
+ React.createElement("rect", { width: "6", height: "6", x: "36", y: "38", fill: "#fff", fillOpacity: ".65", rx: "3" }),
14
+ React.createElement("rect", { width: "6", height: "6", x: "46", y: "38", fill: "#fff", fillOpacity: ".65", rx: "3" }),
15
+ React.createElement("rect", { width: "6", height: "6", x: "56", y: "38", fill: "#fff", fillOpacity: ".3", rx: "3" }),
16
+ React.createElement("rect", { width: "6", height: "6", x: "26", y: "50", fill: "#fff", fillOpacity: ".65", rx: "3" }),
17
+ React.createElement("path", { fill: "#fff", fillOpacity: ".3", d: "M36 53a3 3 0 1 1 6 0 3 3 0 0 1-6 0" }),
18
+ React.createElement("defs", null,
19
+ React.createElement("radialGradient", { id: "a_calendardone96", cx: "0", cy: "0", r: "1", gradientTransform: "matrix(-38.5778 -33.6875 41.3902 -47.2077 63.633 58.625)", gradientUnits: "userSpaceOnUse" },
20
+ React.createElement("stop", { stopColor: "#50BEB8" }),
21
+ React.createElement("stop", { offset: ".861", stopColor: "#D6DEED" })),
22
+ React.createElement("radialGradient", { id: "b_calendardone96", cx: "0", cy: "0", r: "1", gradientTransform: "matrix(-40.7108 -26.8478 44.2863 -38.448 57.446 42)", gradientUnits: "userSpaceOnUse" },
23
+ React.createElement("stop", { stopColor: "#50BEB8" }),
24
+ React.createElement("stop", { offset: ".861", stopColor: "#D6DEED" }))));
25
+ case EIconsTheme.DARK:
26
+ return React.createElement("svg", { width: "96", height: "96", fill: "none", viewBox: "0 0 96 96", name: "CalendardoneMrkIcon96", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
27
+ React.createElement("circle", { cx: "62", cy: "58", r: "22", fill: "#21A19A" }),
28
+ React.createElement("rect", { width: "62", height: "55", x: "75", y: "71", fill: "url(#a_calendardone96)", rx: "6", transform: "rotate(-180 75 71)" }),
29
+ React.createElement("path", { fill: "#fff", d: "M65.606 47.789a1.5 1.5 0 0 1 2.303 1.922l-11.256 13.5c-.226.27-.528.44-.849.507q-.01.001-.02.004l-.107.016-.036.005q-.045.003-.088.004l-.058.002a1.5 1.5 0 0 1-.404-.057l-.02-.005a1.5 1.5 0 0 1-.653-.398L48.44 57.31a1.5 1.5 0 1 1 2.12-2.12l4.839 4.837z" }),
30
+ React.createElement("path", { fill: "url(#b_calendardone96)", d: "M75 29H13v-7a6 6 0 0 1 6-6h50a6 6 0 0 1 6 6z" }),
31
+ React.createElement("path", { fill: "#fff", fillOpacity: ".25", d: "M26 41a3 3 0 1 1 6 0 3 3 0 0 1-6 0" }),
32
+ React.createElement("path", { fill: "#fff", fillOpacity: ".4", d: "M36 41a3 3 0 1 1 6 0 3 3 0 0 1-6 0M46 41a3 3 0 1 1 6 0 3 3 0 0 1-6 0" }),
33
+ React.createElement("path", { fill: "#fff", fillOpacity: ".25", d: "M56 41a3 3 0 1 1 6 0 3 3 0 0 1-6 0" }),
34
+ React.createElement("path", { fill: "#fff", fillOpacity: ".4", d: "M26 53a3 3 0 1 1 6 0 3 3 0 0 1-6 0" }),
35
+ React.createElement("path", { fill: "#fff", fillOpacity: ".25", d: "M36 53a3 3 0 1 1 6 0 3 3 0 0 1-6 0" }),
36
+ React.createElement("defs", null,
37
+ React.createElement("radialGradient", { id: "a_calendardone96", cx: "0", cy: "0", r: "1", gradientTransform: "matrix(38.5778 33.6875 -41.3901 47.2077 86.367 83.375)", gradientUnits: "userSpaceOnUse" },
38
+ React.createElement("stop", { stopColor: "#50BEB8" }),
39
+ React.createElement("stop", { offset: ".861", stopColor: "#373C49" })),
40
+ React.createElement("radialGradient", { id: "b_calendardone96", cx: "0", cy: "0", r: "1", gradientTransform: "matrix(-36.5068 -24.0882 39.7277 -34.4733 57.446 42)", gradientUnits: "userSpaceOnUse" },
41
+ React.createElement("stop", { stopColor: "#50BEB8" }),
42
+ React.createElement("stop", { offset: "1", stopColor: "#373C49" }))));
43
+ }
44
+ });
45
+ export default CalendardoneMrkIcon96;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { IMultiColorIconProps } from "./types";
3
+ declare const CallcheckMrkIcon96: React.ForwardRefExoticComponent<IMultiColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default CallcheckMrkIcon96;
@@ -0,0 +1,78 @@
1
+ import React from "react";
2
+ import { useTheme, EIconsTheme } from "./ThemeProvider";
3
+ const CallcheckMrkIcon96 = React.forwardRef((props, ref) => {
4
+ const theme = useTheme();
5
+ switch (theme) {
6
+ case EIconsTheme.LIGHT:
7
+ return React.createElement("svg", { width: "96", height: "96", fill: "none", viewBox: "0 0 96 96", name: "CallcheckMrkIcon96", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
8
+ React.createElement("path", { fill: "#21A19A", d: "M63.443 33.137a1.5 1.5 0 0 0-.886 0l-18 5.561a1.5 1.5 0 0 0-1.057 1.434v9.939c0 13.61 8.378 22.252 18.768 28.262a1.46 1.46 0 0 0 1.464 0C74.122 72.325 82.5 63.71 82.5 50.07v-9.94a1.5 1.5 0 0 0-1.057-1.433z" }),
9
+ React.createElement("rect", { width: "46", height: "80", x: "25", y: "8", fill: "#50BEB8", rx: "6" }),
10
+ React.createElement("rect", { width: "46", height: "80", x: "25", y: "8", fill: "url(#a_callcheck96)", rx: "6" }),
11
+ React.createElement("rect", { width: "46", height: "80", x: "25", y: "8", fill: "url(#b_callcheck96)", rx: "6" }),
12
+ React.createElement("rect", { width: "46", height: "80", x: "25", y: "8", fill: "url(#c_callcheck96)", rx: "6" }),
13
+ React.createElement("rect", { width: "46", height: "80", x: "25", y: "8", fill: "url(#d_callcheck96)", rx: "6" }),
14
+ React.createElement("rect", { width: "46", height: "80", x: "25", y: "8", fill: "url(#e_callcheck96)", rx: "6" }),
15
+ React.createElement("rect", { width: "46", height: "80", x: "25", y: "8", fill: "url(#f_callcheck96)", rx: "6" }),
16
+ React.createElement("rect", { width: "46", height: "80", x: "25", y: "8", fill: "url(#g_callcheck96)", rx: "6" }),
17
+ React.createElement("path", { fill: "#fff", fillOpacity: ".65", d: "M55.5 12h-15a1.5 1.5 0 0 0 0 3h15a1.5 1.5 0 0 0 0-3" }),
18
+ React.createElement("path", { fill: "#fff", d: "M53.94 46.94a1.5 1.5 0 1 1 2.12 2.12L45.622 59.5H53a1.5 1.5 0 0 1 0 3H42.001a2 2 0 0 1-.151-.008q-.013-.001-.025-.004-.06-.006-.12-.017-.023-.005-.047-.012-.042-.01-.085-.02l-.017-.006-.027-.01a2 2 0 0 1-.108-.04l-.019-.009a1.5 1.5 0 0 1-.709-.64l-.014-.025A1.5 1.5 0 0 1 40.5 61V50a1.5 1.5 0 0 1 3 0v7.379z" }),
19
+ React.createElement("defs", null,
20
+ React.createElement("linearGradient", { id: "a_callcheck96", x1: "48", x2: "45.226", y1: "69.728", y2: "90.522", gradientUnits: "userSpaceOnUse" },
21
+ React.createElement("stop", { stopColor: "#D6DEED", stopOpacity: "0" }),
22
+ React.createElement("stop", { offset: "1", stopColor: "#D6DEED" })),
23
+ React.createElement("linearGradient", { id: "b_callcheck96", x1: "68.092", x2: "72.934", y1: "75.16", y2: "81.9", gradientUnits: "userSpaceOnUse" },
24
+ React.createElement("stop", { stopColor: "#D6DEED", stopOpacity: "0" }),
25
+ React.createElement("stop", { offset: "1", stopColor: "#D6DEED" })),
26
+ React.createElement("linearGradient", { id: "c_callcheck96", x1: "62.796", x2: "26.843", y1: "52.444", y2: "53.011", gradientUnits: "userSpaceOnUse" },
27
+ React.createElement("stop", { stopColor: "#D6DEED", stopOpacity: "0" }),
28
+ React.createElement("stop", { offset: "1", stopColor: "#D6DEED" })),
29
+ React.createElement("linearGradient", { id: "d_callcheck96", x1: "54.337", x2: "52.935", y1: "37.259", y2: "32.757", gradientUnits: "userSpaceOnUse" },
30
+ React.createElement("stop", { stopColor: "#D6DEED", stopOpacity: "0" }),
31
+ React.createElement("stop", { offset: "1", stopColor: "#D6DEED" })),
32
+ React.createElement("linearGradient", { id: "e_callcheck96", x1: "62.665", x2: "63.714", y1: "34.296", y2: "30.553", gradientUnits: "userSpaceOnUse" },
33
+ React.createElement("stop", { stopColor: "#D6DEED", stopOpacity: "0" }),
34
+ React.createElement("stop", { offset: "1", stopColor: "#D6DEED" })),
35
+ React.createElement("linearGradient", { id: "f_callcheck96", x1: "25", x2: "45.367", y1: "-11.024", y2: "48.895", gradientUnits: "userSpaceOnUse" },
36
+ React.createElement("stop", { offset: ".001", stopColor: "#929FBE" }),
37
+ React.createElement("stop", { offset: "1", stopColor: "#D6DEED", stopOpacity: "0" })),
38
+ React.createElement("linearGradient", { id: "g_callcheck96", x1: "74.966", x2: "51.034", y1: "-16.074", y2: "49.114", gradientUnits: "userSpaceOnUse" },
39
+ React.createElement("stop", { offset: ".001", stopColor: "#929FBE" }),
40
+ React.createElement("stop", { offset: "1", stopColor: "#D6DEED", stopOpacity: "0" }))));
41
+ case EIconsTheme.DARK:
42
+ return React.createElement("svg", { width: "96", height: "96", fill: "none", viewBox: "0 0 96 96", name: "CallcheckMrkIcon96", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
43
+ React.createElement("path", { fill: "#21A19A", d: "M63.443 33.137a1.5 1.5 0 0 0-.886 0l-18 5.561a1.5 1.5 0 0 0-1.057 1.434v9.939c0 13.61 8.378 22.252 18.768 28.262a1.46 1.46 0 0 0 1.464 0C74.122 72.325 82.5 63.71 82.5 50.07v-9.94a1.5 1.5 0 0 0-1.057-1.433z" }),
44
+ React.createElement("rect", { width: "46", height: "80", x: "25", y: "8", fill: "#4CA5A1", rx: "6" }),
45
+ React.createElement("rect", { width: "46", height: "80", x: "25", y: "8", fill: "url(#a_callcheck96)", rx: "6" }),
46
+ React.createElement("rect", { width: "46", height: "80", x: "25", y: "8", fill: "url(#b_callcheck96)", rx: "6" }),
47
+ React.createElement("rect", { width: "46", height: "80", x: "25", y: "8", fill: "url(#c_callcheck96)", rx: "6" }),
48
+ React.createElement("rect", { width: "46", height: "80", x: "25", y: "8", fill: "url(#d_callcheck96)", rx: "6" }),
49
+ React.createElement("rect", { width: "46", height: "80", x: "25", y: "8", fill: "url(#e_callcheck96)", rx: "6" }),
50
+ React.createElement("rect", { width: "46", height: "80", x: "25", y: "8", fill: "url(#f_callcheck96)", rx: "6" }),
51
+ React.createElement("rect", { width: "46", height: "80", x: "25", y: "8", fill: "url(#g_callcheck96)", rx: "6" }),
52
+ React.createElement("path", { fill: "#fff", fillOpacity: ".15", d: "M55.5 12h-15a1.5 1.5 0 0 0 0 3h15a1.5 1.5 0 0 0 0-3" }),
53
+ React.createElement("path", { fill: "#fff", d: "M56.06 46.94a1.5 1.5 0 0 0-2.12 0L43.5 57.378v-7.38a1.5 1.5 0 0 0-3 0v11q0 .15.03.295l.001.009q.045.211.149.406l.014.024q.098.177.245.327.15.149.328.245l.024.015q.123.066.253.108l.015.005q.05.014.1.026.023.005.047.012.06.012.12.017l.025.004q.075.007.151.007H53a1.5 1.5 0 0 0 0-3h-7.379l10.44-10.439a1.5 1.5 0 0 0 0-2.12" }),
54
+ React.createElement("defs", null,
55
+ React.createElement("linearGradient", { id: "a_callcheck96", x1: "48", x2: "45.226", y1: "69.728", y2: "90.522", gradientUnits: "userSpaceOnUse" },
56
+ React.createElement("stop", { stopColor: "#373C49", stopOpacity: "0" }),
57
+ React.createElement("stop", { offset: "1", stopColor: "#373C49" })),
58
+ React.createElement("linearGradient", { id: "b_callcheck96", x1: "68.092", x2: "72.934", y1: "75.16", y2: "81.9", gradientUnits: "userSpaceOnUse" },
59
+ React.createElement("stop", { stopColor: "#373C49", stopOpacity: "0" }),
60
+ React.createElement("stop", { offset: "1", stopColor: "#373C49" })),
61
+ React.createElement("linearGradient", { id: "c_callcheck96", x1: "62.796", x2: "26.843", y1: "52.444", y2: "53.011", gradientUnits: "userSpaceOnUse" },
62
+ React.createElement("stop", { stopColor: "#373C49", stopOpacity: "0" }),
63
+ React.createElement("stop", { offset: "1", stopColor: "#373C49" })),
64
+ React.createElement("linearGradient", { id: "d_callcheck96", x1: "54.337", x2: "52.935", y1: "37.259", y2: "32.757", gradientUnits: "userSpaceOnUse" },
65
+ React.createElement("stop", { stopColor: "#373C49", stopOpacity: "0" }),
66
+ React.createElement("stop", { offset: "1", stopColor: "#373C49" })),
67
+ React.createElement("linearGradient", { id: "e_callcheck96", x1: "62.665", x2: "63.714", y1: "34.296", y2: "30.553", gradientUnits: "userSpaceOnUse" },
68
+ React.createElement("stop", { stopColor: "#373C49", stopOpacity: "0" }),
69
+ React.createElement("stop", { offset: "1", stopColor: "#373C49" })),
70
+ React.createElement("linearGradient", { id: "f_callcheck96", x1: "25", x2: "45.367", y1: "-11.024", y2: "48.895", gradientUnits: "userSpaceOnUse" },
71
+ React.createElement("stop", { offset: ".001", stopColor: "#464A56" }),
72
+ React.createElement("stop", { offset: "1", stopColor: "#373C49", stopOpacity: "0" })),
73
+ React.createElement("linearGradient", { id: "g_callcheck96", x1: "74.966", x2: "51.034", y1: "-16.074", y2: "49.114", gradientUnits: "userSpaceOnUse" },
74
+ React.createElement("stop", { offset: ".001", stopColor: "#464A56" }),
75
+ React.createElement("stop", { offset: "1", stopColor: "#373C49", stopOpacity: "0" }))));
76
+ }
77
+ });
78
+ export default CallcheckMrkIcon96;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const CaretleftdoubleStrokeSrvIcon16: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default CaretleftdoubleStrokeSrvIcon16;
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const CaretleftdoubleStrokeSrvIcon16 = React.forwardRef(({ paletteIndex, ...restProps }, ref) => {
5
+ const pathClassName = getPathClassName(paletteIndex, useTheme());
6
+ return React.createElement("svg", { width: "16", height: "16", fill: "none", viewBox: "0 0 16 16", name: "CaretleftdoubleStrokeSrvIcon16", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, d: "M6.255 2.83c.36-.41 1-.45 1.41-.08.41.36.45 1 .08 1.41L4.335 8l3.41 3.83c.37.41.33 1.05-.08 1.41a.997.997 0 0 1-1.41-.08l-4-4.5a.995.995 0 0 1 0-1.33z" }),
8
+ React.createElement("path", { className: pathClassName, d: "M12.255 2.83c.36-.41 1-.45 1.41-.08.41.36.45 1 .08 1.41L10.335 8l3.41 3.83c.37.41.33 1.05-.08 1.41a.997.997 0 0 1-1.41-.08l-4-4.5a.995.995 0 0 1 0-1.33z" }));
9
+ });
10
+ export default CaretleftdoubleStrokeSrvIcon16;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const CaretleftdoubleStrokeSrvIcon20: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default CaretleftdoubleStrokeSrvIcon20;
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const CaretleftdoubleStrokeSrvIcon20 = React.forwardRef(({ paletteIndex, ...restProps }, ref) => {
5
+ const pathClassName = getPathClassName(paletteIndex, useTheme());
6
+ return React.createElement("svg", { width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", name: "CaretleftdoubleStrokeSrvIcon20", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, d: "M8.255 4.83c.36-.41 1-.45 1.41-.08.41.36.45 1 .08 1.41L6.335 10l3.41 3.83c.37.41.33 1.05-.08 1.41a.997.997 0 0 1-1.41-.08l-4-4.5a.995.995 0 0 1 0-1.33z" }),
8
+ React.createElement("path", { className: pathClassName, d: "M14.255 4.83c.36-.41 1-.45 1.41-.08.41.36.45 1 .08 1.41L12.335 10l3.41 3.83c.37.41.33 1.05-.08 1.41a.997.997 0 0 1-1.41-.08l-4-4.5a.995.995 0 0 1 0-1.33z" }));
9
+ });
10
+ export default CaretleftdoubleStrokeSrvIcon20;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const ComplianceassistantStrokePrdIcon20: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default ComplianceassistantStrokePrdIcon20;
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const ComplianceassistantStrokePrdIcon20 = React.forwardRef(({ paletteIndex, ...restProps }, ref) => {
5
+ const pathClassName = getPathClassName(paletteIndex, useTheme());
6
+ return React.createElement("svg", { width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", name: "ComplianceassistantStrokePrdIcon20", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, d: "M10 8a1 1 0 0 1 1 1v8a1 1 0 0 0 1.995.102l.01-.204A1 1 0 0 1 15 17a3 3 0 0 1-6 0V9a1 1 0 0 1 1-1" }),
8
+ React.createElement("path", { className: pathClassName, d: "M10 0a1 1 0 0 1 1 1v1q0 .019-.003.038c3.27.258 5.472 1.766 6.866 3.286a11 11 0 0 1 1.6 2.272c.164.31.282.573.36.761q.069.16.126.325v.002a1 1 0 0 1-1.09 1.306l-3.309-.472-1.807.452a1 1 0 1 1-.485-1.94l2-.5.095-.02q.144-.02.289 0l1.576.224a9 9 0 0 0-.83-1.058C15.168 5.346 13.173 4 10 4S4.832 5.346 3.613 6.676a9 9 0 0 0-.831 1.058l1.577-.224q.194-.027.384.02l2 .5a1 1 0 0 1-.485 1.94L4.45 9.518l-3.308.472a1 1 0 0 1-1.09-1.306v-.002l.001-.003c1.331-3.77 5.029-6.331 8.948-6.64V1a1 1 0 0 1 1-1" }));
9
+ });
10
+ export default ComplianceassistantStrokePrdIcon20;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const ComplianceassistantStrokePrdIcon32: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default ComplianceassistantStrokePrdIcon32;
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const ComplianceassistantStrokePrdIcon32 = React.forwardRef(({ paletteIndex, ...restProps }, ref) => {
5
+ const pathClassName = getPathClassName(paletteIndex, useTheme());
6
+ return React.createElement("svg", { width: "32", height: "32", fill: "none", viewBox: "0 0 32 32", name: "ComplianceassistantStrokePrdIcon32", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, d: "M16 13a1 1 0 0 1 1 1v11a2 2 0 0 0 4 0v-.333a1 1 0 0 1 2 0V25a4 4 0 1 1-8 0V14a1 1 0 0 1 1-1" }),
8
+ React.createElement("path", { className: pathClassName, d: "M16 2a1 1 0 0 1 1 1v1.526c4.814.262 8.014 2.393 10.022 4.541a15 15 0 0 1 2.249 3.131 13 13 0 0 1 .629 1.352c.016.041.027.088.047.128a1.001 1.001 0 0 1-1.144 1.302l-4.74-.948-2.747.916a1 1 0 0 1-.633-1.896l3-1 .126-.033c.127-.025.259-.025.387 0l3.013.603a13 13 0 0 0-1.648-2.19C23.733 8.478 20.735 6.5 16 6.5s-7.734 1.977-9.562 3.933a13 13 0 0 0-1.65 2.19l3.015-.603.13-.018c.128-.009.26.009.383.05l3 1a1 1 0 1 1-.633 1.896l-2.748-.916-4.74.948a1.002 1.002 0 0 1-1.143-1.302c.069-.193-.045.115.047-.128q.042-.112.124-.306c.11-.257.275-.618.505-1.046a15 15 0 0 1 2.25-3.13C6.984 6.918 10.185 4.787 15 4.525V3a1 1 0 0 1 1-1" }));
9
+ });
10
+ export default ComplianceassistantStrokePrdIcon32;
@@ -5,6 +5,6 @@ const DigitalrubleStrokePrdIcon20 = React.forwardRef(({ paletteIndex, ...restPro
5
5
  const pathClassName = getPathClassName(paletteIndex, useTheme());
6
6
  return React.createElement("svg", { width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", name: "DigitalrubleStrokePrdIcon20", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
7
  React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M15.5 10a3 3 0 1 1 0 6h-1v.5h.5a1 1 0 1 1 0 2h-.5v.5a1 1 0 0 1-2 0v-.5H12a1 1 0 0 1 0-2h.5V16H12a1 1 0 0 1 0-2h.5v-3l.005-.102A1 1 0 0 1 13.5 10zm-1 4h1a1 1 0 0 0 0-2h-1z", clipRule: "evenodd" }),
8
- React.createElement("path", { className: pathClassName, d: "M7.778.247A1.001 1.001 0 0 1 8.222 2.2a8.002 8.002 0 0 0 .889 15.753 1 1 0 1 1-.221 1.987C3.889 19.386 0 15.148 0 10 0 5.24 3.325 1.258 7.778.247M11.024 1.001a1 1 0 0 1 1.198-.754 10.01 10.01 0 0 1 7.717 8.643 1 1 0 0 1-1.988.22 8.01 8.01 0 0 0-6.173-6.911A1 1 0 0 1 11.024 1" }));
8
+ React.createElement("path", { className: pathClassName, d: "M7.778.248a1.001 1.001 0 0 1 .444 1.95 8.002 8.002 0 0 0 .889 15.753 1 1 0 1 1-.221 1.988C3.889 19.386 0 15.148 0 10 0 5.24 3.325 1.258 7.778.248M11.024 1.001a1 1 0 0 1 1.198-.753 10.01 10.01 0 0 1 7.717 8.642 1 1 0 0 1-1.988.22 8.01 8.01 0 0 0-6.173-6.911A1 1 0 0 1 11.024 1" }));
9
9
  });
10
10
  export default DigitalrubleStrokePrdIcon20;
@@ -5,7 +5,7 @@ const DigitalrubleStrokePrdIcon32 = React.forwardRef(({ paletteIndex, ...restPro
5
5
  const pathClassName = getPathClassName(paletteIndex, useTheme());
6
6
  return React.createElement("svg", { width: "32", height: "32", fill: "none", viewBox: "0 0 32 32", name: "DigitalrubleStrokePrdIcon32", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
7
  React.createElement("path", { className: pathClassName, d: "M13.293 3.282a1 1 0 0 1 .414 1.957C8.732 6.293 5 10.712 5 15.999c0 6.076 4.925 11 11 11a1 1 0 0 1 0 2C8.82 29 3 23.18 3 16 3 9.749 7.413 4.529 13.293 3.283" }),
8
- React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M24 17a3.5 3.5 0 0 1 0 7h-1.5v1h.988a1 1 0 0 1 0 2H22.5v1a1 1 0 0 1-2 0v-1h-1a1 1 0 0 1 0-2h1v-1h-1a1 1 0 0 1 0-2h1v-4l.005-.103A1 1 0 0 1 21.5 17zm-1.5 5H24a1.5 1.5 0 0 0 0-3h-1.5z", clipRule: "evenodd" }),
9
- React.createElement("path", { className: pathClassName, d: "M17.522 4.053a1 1 0 0 1 1.185-.771C24.587 4.528 29 9.748 29 16a1 1 0 0 1-2 0c0-5.288-3.733-9.707-8.707-10.761a1 1 0 0 1-.771-1.186" }));
8
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M24 17a3.5 3.5 0 0 1 0 7h-1.5v1h.988a1 1 0 0 1 0 2H22.5v1a1 1 0 1 1-2 0v-1h-1a1 1 0 1 1 0-2h1v-1h-1a1 1 0 1 1 0-2h1v-4l.005-.103A1 1 0 0 1 21.5 17zm-1.5 5H24a1.5 1.5 0 0 0 0-3h-1.5z", clipRule: "evenodd" }),
9
+ React.createElement("path", { className: pathClassName, d: "M17.522 4.053a1 1 0 0 1 1.185-.771C24.587 4.528 29 9.748 29 16a1 1 0 1 1-2 0c0-5.288-3.733-9.707-8.707-10.761a1 1 0 0 1-.771-1.186" }));
10
10
  });
11
11
  export default DigitalrubleStrokePrdIcon32;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { IMultiColorIconProps } from "./types";
3
+ declare const Error404SysIcon96: React.ForwardRefExoticComponent<IMultiColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default Error404SysIcon96;
@@ -0,0 +1,70 @@
1
+ import React from "react";
2
+ import { useTheme, EIconsTheme } from "./ThemeProvider";
3
+ const Error404SysIcon96 = React.forwardRef((props, ref) => {
4
+ const theme = useTheme();
5
+ switch (theme) {
6
+ case EIconsTheme.LIGHT:
7
+ return React.createElement("svg", { width: "96", height: "96", fill: "none", viewBox: "0 0 96 96", name: "Error404SysIcon96", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
8
+ React.createElement("path", { fill: "url(#a_error40496)", d: "M82 70V25.001a3.5 3.5 0 1 1 7 0V70a3.5 3.5 0 1 1-7 0" }),
9
+ React.createElement("path", { fill: "url(#b_error40496)", d: "M82.53 23.149a3.5 3.5 0 0 1 5.94 3.703l-21.5 34.5a3.5 3.5 0 0 1-5.94-3.703z" }),
10
+ React.createElement("path", { fill: "url(#c_error40496)", d: "M91.5 56a3.5 3.5 0 1 1 0 7h-27a3.5 3.5 0 1 1 0-7z" }),
11
+ React.createElement("path", { fill: "url(#d_error40496)", d: "M58.5 37.5a9 9 0 1 0-18 0v21a9 9 0 1 0 18 0zm7 21c0 8.837-7.163 16-16 16s-16-7.163-16-16v-21c0-8.837 7.163-16 16-16s16 7.163 16 16z" }),
12
+ React.createElement("path", { fill: "url(#e_error40496)", d: "M21.763 23.177a3.5 3.5 0 1 1 5.974 3.646c-4.04 6.622-7.194 11.914-10.355 17.219A1787 1787 0 0 1 6.987 61.323a3.5 3.5 0 1 1-5.974-3.646c4.04-6.622 7.194-11.914 10.355-17.219a1789 1789 0 0 1 10.395-17.281" }),
13
+ React.createElement("path", { fill: "url(#f_error40496)", d: "M32 56a3.5 3.5 0 1 1 0 7H4a3.5 3.5 0 1 1 0-7z" }),
14
+ React.createElement("path", { fill: "url(#g_error40496)", d: "M21.5 70V25a3.5 3.5 0 1 1 7 0v45a3.5 3.5 0 1 1-7 0" }),
15
+ React.createElement("defs", null,
16
+ React.createElement("linearGradient", { id: "a_error40496", x1: "85.501", x2: "85.5", y1: "73.617", y2: "38.26", gradientUnits: "userSpaceOnUse" },
17
+ React.createElement("stop", { stopColor: "#D4DBEA" }),
18
+ React.createElement("stop", { offset: "1", stopColor: "#A3AFC9" })),
19
+ React.createElement("linearGradient", { id: "b_error40496", x1: "80.034", x2: "69.127", y1: "31.764", y2: "45.975", gradientUnits: "userSpaceOnUse" },
20
+ React.createElement("stop", { stopColor: "#A4B0CA" }),
21
+ React.createElement("stop", { offset: "1", stopColor: "#8291B3" })),
22
+ React.createElement("linearGradient", { id: "c_error40496", x1: "106.35", x2: "70.237", y1: "58.751", y2: "58.751", gradientUnits: "userSpaceOnUse" },
23
+ React.createElement("stop", { stopColor: "#D4DBEA" }),
24
+ React.createElement("stop", { offset: "1", stopColor: "#8291B3" })),
25
+ React.createElement("linearGradient", { id: "d_error40496", x1: "68.579", x2: "32.723", y1: "32.535", y2: "46.661", gradientUnits: "userSpaceOnUse" },
26
+ React.createElement("stop", { stopColor: "#D4DBEA" }),
27
+ React.createElement("stop", { offset: "1", stopColor: "#8291B3" })),
28
+ React.createElement("linearGradient", { id: "e_error40496", x1: "7.766", x2: "20.657", y1: "48.049", y2: "34.64", gradientUnits: "userSpaceOnUse" },
29
+ React.createElement("stop", { stopColor: "#A4B0CA" }),
30
+ React.createElement("stop", { offset: "1", stopColor: "#8291B3" })),
31
+ React.createElement("linearGradient", { id: "f_error40496", x1: "32.141", x2: "11.491", y1: "58.75", y2: "58.75", gradientUnits: "userSpaceOnUse" },
32
+ React.createElement("stop", { stopColor: "#D4DBEA" }),
33
+ React.createElement("stop", { offset: "1", stopColor: "#A4B0CA" })),
34
+ React.createElement("linearGradient", { id: "g_error40496", x1: "25", x2: "25", y1: "37.054", y2: "70", gradientUnits: "userSpaceOnUse" },
35
+ React.createElement("stop", { stopColor: "#8291B3" }),
36
+ React.createElement("stop", { offset: "1", stopColor: "#C1CADD" }))));
37
+ case EIconsTheme.DARK:
38
+ return React.createElement("svg", { width: "96", height: "96", fill: "none", viewBox: "0 0 96 96", name: "Error404SysIcon96", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
39
+ React.createElement("path", { fill: "url(#a_error40496)", d: "M82 70V25.001a3.5 3.5 0 1 1 7 0V70a3.5 3.5 0 1 1-7 0" }),
40
+ React.createElement("path", { fill: "url(#b_error40496)", d: "M82.53 23.149a3.5 3.5 0 0 1 5.94 3.703l-21.5 34.5a3.5 3.5 0 0 1-5.94-3.703z" }),
41
+ React.createElement("path", { fill: "url(#c_error40496)", d: "M91.5 56a3.5 3.5 0 1 1 0 7h-27a3.5 3.5 0 1 1 0-7z" }),
42
+ React.createElement("path", { fill: "url(#d_error40496)", d: "M58.5 37.5a9 9 0 1 0-18 0v21a9 9 0 1 0 18 0zm7 21c0 8.837-7.163 16-16 16s-16-7.163-16-16v-21c0-8.837 7.163-16 16-16s16 7.163 16 16z" }),
43
+ React.createElement("path", { fill: "url(#e_error40496)", d: "M21.763 23.177a3.5 3.5 0 1 1 5.974 3.646c-4.04 6.622-7.194 11.914-10.355 17.219A1788 1788 0 0 1 6.987 61.323a3.5 3.5 0 1 1-5.974-3.646c4.04-6.622 7.194-11.914 10.355-17.219a1789 1789 0 0 1 10.395-17.281" }),
44
+ React.createElement("path", { fill: "url(#f_error40496)", d: "M32 56a3.5 3.5 0 1 1 0 7H4a3.5 3.5 0 1 1 0-7z" }),
45
+ React.createElement("path", { fill: "url(#g_error40496)", d: "M21.5 70V25a3.5 3.5 0 1 1 7 0v45a3.5 3.5 0 1 1-7 0" }),
46
+ React.createElement("defs", null,
47
+ React.createElement("linearGradient", { id: "a_error40496", x1: "85.5", x2: "85.5", y1: "37.154", y2: "69.786", gradientUnits: "userSpaceOnUse" },
48
+ React.createElement("stop", { stopColor: "#555F75" }),
49
+ React.createElement("stop", { offset: "1", stopColor: "#717B91" })),
50
+ React.createElement("linearGradient", { id: "b_error40496", x1: "67.706", x2: "80.662", y1: "48.461", y2: "34.703", gradientUnits: "userSpaceOnUse" },
51
+ React.createElement("stop", { stopColor: "#373C49" }),
52
+ React.createElement("stop", { offset: "1", stopColor: "#555F75" })),
53
+ React.createElement("linearGradient", { id: "c_error40496", x1: "91.122", x2: "71.271", y1: "59.5", y2: "59.5", gradientUnits: "userSpaceOnUse" },
54
+ React.createElement("stop", { stopColor: "#636F89" }),
55
+ React.createElement("stop", { offset: "1", stopColor: "#373C49" })),
56
+ React.createElement("linearGradient", { id: "d_error40496", x1: "68.242", x2: "32.947", y1: "32.691", y2: "46.489", gradientUnits: "userSpaceOnUse" },
57
+ React.createElement("stop", { stopColor: "#8894AD" }),
58
+ React.createElement("stop", { offset: "1", stopColor: "#373C49" })),
59
+ React.createElement("linearGradient", { id: "e_error40496", x1: "7.516", x2: "20.488", y1: "48.461", y2: "35.049", gradientUnits: "userSpaceOnUse" },
60
+ React.createElement("stop", { stopColor: "#6F7B94" }),
61
+ React.createElement("stop", { offset: "1", stopColor: "#4A5265" })),
62
+ React.createElement("linearGradient", { id: "f_error40496", x1: "31.508", x2: "11.073", y1: "59.5", y2: "59.5", gradientUnits: "userSpaceOnUse" },
63
+ React.createElement("stop", { stopColor: "#646F8A" }),
64
+ React.createElement("stop", { offset: "1", stopColor: "#6F7B94" })),
65
+ React.createElement("linearGradient", { id: "g_error40496", x1: "25", x2: "25", y1: "37.153", y2: "69.786", gradientUnits: "userSpaceOnUse" },
66
+ React.createElement("stop", { stopColor: "#4A5265" }),
67
+ React.createElement("stop", { offset: "1", stopColor: "#636E88" }))));
68
+ }
69
+ });
70
+ export default Error404SysIcon96;
@@ -11,7 +11,7 @@ const GotologinMrkIcon96 = React.forwardRef((props, ref) => {
11
11
  React.createElement("path", { fill: "url(#b_gotologin96)", fillRule: "evenodd", d: "M31.345 8h33.31C68.153 8 71 10.685 71 14v68c0 3.308-2.847 6-6.345 6h-33.31C27.839 88 25 85.308 25 82V14c0-3.315 2.84-6 6.345-6", clipRule: "evenodd" }),
12
12
  React.createElement("path", { fill: "url(#c_gotologin96)", fillRule: "evenodd", d: "M31.345 8h33.31C68.153 8 71 10.685 71 14v68c0 3.308-2.847 6-6.345 6h-33.31C27.839 88 25 85.308 25 82V14c0-3.315 2.84-6 6.345-6", clipRule: "evenodd" }),
13
13
  React.createElement("path", { fill: "#fff", fillOpacity: ".65", d: "M55.5 12h-15a1.5 1.5 0 0 0 0 3h15a1.5 1.5 0 0 0 0-3" }),
14
- React.createElement("path", { fill: "#fff", d: "M51.132 56.541a2 2 0 0 1 2.827.09l7.5 8 .044.052.059.07.062.084.05.071.053.088.045.077q.023.047.044.095.02.04.037.083.017.04.03.083.018.048.033.097.014.048.024.096.013.044.022.088.01.06.017.121.007.035.01.069.02.195 0 .39-.004.033-.01.068-.007.06-.017.12-.01.045-.022.089-.01.048-.024.096-.014.05-.032.097l-.03.083-.038.083q-.02.048-.044.095l-.044.077q-.026.045-.054.088l-.05.071a2 2 0 0 1-.121.154q-.022.027-.044.052l-7.5 8a2 2 0 0 1-2.918-2.736L55.383 68H42a2 2 0 1 1 0-4h13.383l-4.342-4.632a2 2 0 0 1 .09-2.827" }),
14
+ React.createElement("path", { fill: "#fff", d: "M51.974 57a1.5 1.5 0 0 1 2.12.068l7.5 8q.025.028.048.056l.022.025q.032.04.06.082l.03.041q.027.042.05.084l.02.034q.059.11.096.226l.017.049q.013.045.023.092.006.021.01.042c.04.195.04.396 0 .59l-.008.038-.027.101-.011.036q-.062.19-.175.36l-.016.023q-.062.092-.138.174l-7.5 8a1.501 1.501 0 0 1-2.19-2.053l5.131-5.473H42.5a1.5 1.5 0 1 1 0-3h14.536l-5.13-5.474A1.5 1.5 0 0 1 51.973 57" }),
15
15
  React.createElement("defs", null,
16
16
  React.createElement("linearGradient", { id: "a_gotologin96", x1: "71", x2: "25", y1: "67.375", y2: "67.375", gradientUnits: "userSpaceOnUse" },
17
17
  React.createElement("stop", { stopColor: "#21A19A", stopOpacity: ".6" }),
@@ -33,7 +33,7 @@ const GotologinMrkIcon96 = React.forwardRef((props, ref) => {
33
33
  React.createElement("path", { fill: "url(#b_gotologin96)", fillRule: "evenodd", d: "M31.345 8h33.31C68.153 8 71 10.685 71 14v68c0 3.308-2.847 6-6.345 6h-33.31C27.839 88 25 85.308 25 82V14c0-3.315 2.84-6 6.345-6", clipRule: "evenodd" }),
34
34
  React.createElement("path", { fill: "url(#c_gotologin96)", fillRule: "evenodd", d: "M31.345 8h33.31C68.153 8 71 10.685 71 14v68c0 3.308-2.847 6-6.345 6h-33.31C27.839 88 25 85.308 25 82V14c0-3.315 2.84-6 6.345-6", clipRule: "evenodd" }),
35
35
  React.createElement("path", { fill: "#fff", fillOpacity: ".15", d: "M55.5 12h-15a1.5 1.5 0 0 0 0 3h15a1.5 1.5 0 0 0 0-3" }),
36
- React.createElement("path", { fill: "#fff", d: "M51.132 56.541a2 2 0 0 1 2.827.09l7.5 8 .044.052.059.07.062.084.05.071.053.088.045.077q.023.047.044.095.02.04.037.083.017.04.03.083.018.048.033.097.014.048.024.096.013.044.022.088.01.06.017.121.007.035.01.069.02.195 0 .39-.004.033-.01.068-.007.06-.017.12-.01.045-.022.089-.01.048-.024.096-.014.05-.032.097l-.03.083-.038.083q-.02.048-.044.095l-.044.077q-.026.045-.054.088l-.05.071a2 2 0 0 1-.121.154q-.022.027-.044.052l-7.5 8a2 2 0 0 1-2.918-2.736L55.383 68H42a2 2 0 1 1 0-4h13.383l-4.342-4.632a2 2 0 0 1 .09-2.827" }),
36
+ React.createElement("path", { fill: "#fff", d: "M51.974 57a1.5 1.5 0 0 1 2.12.068l7.5 8q.025.028.048.056l.022.025q.032.04.06.082l.03.041q.027.042.05.084l.02.034q.059.11.096.226l.017.049q.013.045.023.092.006.021.01.042c.04.195.04.396 0 .59l-.008.038-.027.101-.011.036q-.062.19-.175.36l-.016.023q-.062.092-.138.174l-7.5 8a1.501 1.501 0 0 1-2.19-2.053l5.131-5.473H42.5a1.5 1.5 0 1 1 0-3h14.536l-5.13-5.474A1.5 1.5 0 0 1 51.973 57" }),
37
37
  React.createElement("defs", null,
38
38
  React.createElement("linearGradient", { id: "a_gotologin96", x1: "71", x2: "25", y1: "67.375", y2: "67.375", gradientUnits: "userSpaceOnUse" },
39
39
  React.createElement("stop", { stopColor: "#21A19A", stopOpacity: ".6" }),
@@ -4,8 +4,8 @@ import getPathClassName from "./utils/getPathClassName";
4
4
  const InvisibleStrokeSrvIcon32 = React.forwardRef(({ paletteIndex, ...restProps }, ref) => {
5
5
  const pathClassName = getPathClassName(paletteIndex, useTheme());
6
6
  return React.createElement("svg", { width: "32", height: "32", fill: "none", viewBox: "0 0 32 32", name: "InvisibleStrokeSrvIcon32", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
- React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M3.293 3.293a1 1 0 0 1 1.414 0l24 24a1 1 0 0 1-1.414 1.414l-4.93-4.93A12.56 12.56 0 0 1 16 25.5c-5.22 0-9.698-3.172-11.63-7.691a4.6 4.6 0 0 1 0-3.618 12.7 12.7 0 0 1 3.6-4.807L3.293 4.707a1 1 0 0 1 0-1.414m6.099 7.513a10.7 10.7 0 0 0-3.183 4.172 2.6 2.6 0 0 0 0 2.045C7.84 20.835 11.612 23.5 16 23.5c1.765 0 3.428-.431 4.893-1.193l-2.137-2.137a5 5 0 0 1-6.928-6.928zm3.901 3.901a3 3 0 0 0 3.999 3.999z", clipRule: "evenodd" }),
8
- React.createElement("path", { className: pathClassName, d: "M16 6.5c5.22 0 9.698 3.172 11.63 7.692a4.6 4.6 0 0 1 0 3.617 12.7 12.7 0 0 1-1.042 1.947 1 1 0 0 1-1.675-1.093q.509-.777.878-1.64a2.6 2.6 0 0 0 0-2.045c-1.63-3.813-5.402-6.478-9.79-6.478q-1.046.001-2.031.193a1 1 0 1 1-.38-1.962c.78-.152 1.587-.23 2.41-.23" }),
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M3.293 3.293a1 1 0 0 1 1.414 0l24 24a1 1 0 0 1-1.414 1.414l-4.93-4.93A12.56 12.56 0 0 1 16 25.5c-5.22 0-9.698-3.172-11.63-7.691a4.6 4.6 0 0 1 0-3.617 12.7 12.7 0 0 1 3.6-4.808L3.293 4.707a1 1 0 0 1 0-1.414m6.099 7.513a10.7 10.7 0 0 0-3.183 4.172 2.6 2.6 0 0 0 0 2.045C7.84 20.835 11.612 23.5 16 23.5a10.6 10.6 0 0 0 4.893-1.193l-2.137-2.137a5 5 0 0 1-6.928-6.928zm3.901 3.901a3 3 0 0 0 3.999 3.999z", clipRule: "evenodd" }),
8
+ React.createElement("path", { className: pathClassName, d: "M16 6.5c5.22 0 9.698 3.172 11.63 7.692a4.6 4.6 0 0 1 0 3.617 12.7 12.7 0 0 1-1.042 1.947 1 1 0 0 1-1.675-1.093 10.7 10.7 0 0 0 .878-1.64 2.6 2.6 0 0 0 0-2.045c-1.63-3.813-5.402-6.478-9.79-6.478q-1.046.001-2.031.194a1 1 0 1 1-.38-1.963c.78-.152 1.587-.23 2.41-.23" }),
9
9
  React.createElement("path", { className: pathClassName, d: "M16.396 11.896a1 1 0 0 1 1.277-.609 5.01 5.01 0 0 1 3.17 3.464 1 1 0 0 1-1.938.498 3.01 3.01 0 0 0-1.901-2.077 1 1 0 0 1-.608-1.276" }));
10
10
  });
11
11
  export default InvisibleStrokeSrvIcon32;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const OverdraftStrokePrdIcon20: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default OverdraftStrokePrdIcon20;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const OverdraftStrokePrdIcon20 = React.forwardRef(({ paletteIndex, ...restProps }, ref) => {
5
+ const pathClassName = getPathClassName(paletteIndex, useTheme());
6
+ return React.createElement("svg", { width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", name: "OverdraftStrokePrdIcon20", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M10 0C4.477 0 0 4.477 0 10s4.477 10 10 10 10-4.477 10-10S15.523 0 10 0M5.296 3.528A7.96 7.96 0 0 1 10 2c1.849 0 3.551.627 4.906 1.68L13.477 5.11a6.01 6.01 0 0 0-6.744-.143zm-1.459 1.37A7.97 7.97 0 0 0 2 10c0 1.849.627 3.551 1.68 4.906l1.429-1.43a6 6 0 0 1 .15-7.155zM5.094 16.32A7.97 7.97 0 0 0 10 18c1.94 0 3.717-.69 5.102-1.838L13.68 14.74a6 6 0 0 1-7.157.151zM18 10a7.96 7.96 0 0 1-1.528 4.704l-1.438-1.437a6.01 6.01 0 0 0-.143-6.744l1.429-1.429A7.97 7.97 0 0 1 18 10M7.172 12.828a4 4 0 1 1 5.657-5.656 4 4 0 0 1-5.657 5.656", clipRule: "evenodd" }));
8
+ });
9
+ export default OverdraftStrokePrdIcon20;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const OverdraftStrokePrdIcon32: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default OverdraftStrokePrdIcon32;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const OverdraftStrokePrdIcon32 = React.forwardRef(({ paletteIndex, ...restProps }, ref) => {
5
+ const pathClassName = getPathClassName(paletteIndex, useTheme());
6
+ return React.createElement("svg", { width: "32", height: "32", fill: "none", viewBox: "0 0 32 32", name: "OverdraftStrokePrdIcon32", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M16 3C8.82 3 3 8.82 3 16s5.82 13 13 13 13-5.82 13-13S23.18 3 16 3m-5.363 3.394A10.95 10.95 0 0 1 16 5c1.948 0 3.777.506 5.363 1.394l-2.239 2.24A8 8 0 0 0 16 8a8 8 0 0 0-3.124.633zm-4.243 4.242A10.95 10.95 0 0 0 5 16c0 1.948.506 3.777 1.394 5.363l2.24-2.239A8 8 0 0 1 8 16c0-1.109.225-2.165.633-3.124zm1.153-1.675 2.133 2.133a8 8 0 0 1 1.414-1.414L8.961 7.547c-.513.427-.987.9-1.414 1.414m3.09 16.645A10.95 10.95 0 0 0 16 27a10.95 10.95 0 0 0 5.364-1.394l-2.24-2.24A8 8 0 0 1 16 24a8 8 0 0 1-3.124-.633zm13.816-2.567a11 11 0 0 1-1.414 1.414l-2.133-2.133a8 8 0 0 0 1.414-1.414zM27 16a10.95 10.95 0 0 1-1.394 5.363l-2.239-2.239c.407-.96.633-2.015.633-3.124a8 8 0 0 0-.633-3.124l2.24-2.24A10.95 10.95 0 0 1 27 16M8.96 24.453l2.134-2.133a8 8 0 0 1-1.414-1.414l-2.133 2.133q.642.77 1.414 1.414M23.04 7.547c.512.427.986.9 1.413 1.414l-2.133 2.133a8 8 0 0 0-1.414-1.414zM10 16a6 6 0 1 1 12 0 6 6 0 0 1-12 0", clipRule: "evenodd" }));
8
+ });
9
+ export default OverdraftStrokePrdIcon32;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const PaymentbycreditStrokePrdIcon20: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default PaymentbycreditStrokePrdIcon20;
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const PaymentbycreditStrokePrdIcon20 = React.forwardRef(({ paletteIndex, ...restProps }, ref) => {
5
+ const pathClassName = getPathClassName(paletteIndex, useTheme());
6
+ return React.createElement("svg", { width: "20", height: "20", fill: "none", viewBox: "0 0 20 20", name: "PaymentbycreditStrokePrdIcon20", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M11.5 7a1 1 0 1 1 0 2h-1a.5.5 0 0 0-.5.5v4h2a2.5 2.5 0 0 1 2.5 2.5v2h2a.5.5 0 0 0 .5-.5v-2a1 1 0 1 1 2 0v2a2.5 2.5 0 0 1-2.5 2.5h-2.879a2.5 2.5 0 0 1-1.767-.732l-3.122-3.122A2.5 2.5 0 0 1 8 14.38V9.5A2.5 2.5 0 0 1 10.5 7zm1 10.086V16a.5.5 0 0 0-.5-.5h-1.086z", clipRule: "evenodd" }),
8
+ React.createElement("path", { className: pathClassName, d: "M11 0a1 1 0 0 1 1 1v.5h1a3 3 0 0 1 3 3 1 1 0 0 1-1.995.103l-.01-.206A1 1 0 0 0 13 3.5h-1V4a1 1 0 1 1-2 0v-.5H6V4a1 1 0 0 1-2 0v-.5H3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h2a1 1 0 1 1 0 2H3a3 3 0 0 1-3-3v-8a3 3 0 0 1 3-3h1V1a1 1 0 0 1 2 0v.5h4V1a1 1 0 0 1 1-1M19 11a1 1 0 1 1 0 2 1 1 0 0 1 0-2M17.793 7.793a1 1 0 1 1 1.414 1.414l-3 3a1 1 0 1 1-1.414-1.414zM15 7a1 1 0 1 1 0 2 1 1 0 0 1 0-2" }));
9
+ });
10
+ export default PaymentbycreditStrokePrdIcon20;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const PaymentbycreditStrokePrdIcon32: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default PaymentbycreditStrokePrdIcon32;