@sberbusiness/icons-next 1.0.0-beta.3 → 1.0.1

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 (59) hide show
  1. package/ArrowleftStrokeSrvIcon24.d.ts +4 -0
  2. package/ArrowleftStrokeSrvIcon24.js +13 -0
  3. package/ArrowleftStrokeSrvIcon32.d.ts +4 -0
  4. package/ArrowleftStrokeSrvIcon32.js +9 -0
  5. package/ArrowrightStrokeSrvIcon24.d.ts +4 -0
  6. package/ArrowrightStrokeSrvIcon24.js +13 -0
  7. package/ArrowrightStrokeSrvIcon32.d.ts +4 -0
  8. package/ArrowrightStrokeSrvIcon32.js +9 -0
  9. package/BellStrokeNavIcon20.d.ts +4 -0
  10. package/BellStrokeNavIcon20.js +9 -0
  11. package/BellStrokeNavIcon24.d.ts +4 -0
  12. package/BellStrokeNavIcon24.js +9 -0
  13. package/BellStrokeNavIcon32.d.ts +4 -0
  14. package/BellStrokeNavIcon32.js +9 -0
  15. package/CalendarStrokeSrvIcon16.d.ts +4 -0
  16. package/CalendarStrokeSrvIcon16.js +9 -0
  17. package/CaretupdownStrokeSrvIcon16.d.ts +4 -0
  18. package/CaretupdownStrokeSrvIcon16.js +9 -0
  19. package/CaretupdownStrokeSrvIcon20.d.ts +4 -0
  20. package/CaretupdownStrokeSrvIcon20.js +9 -0
  21. package/CaretupdownStrokeSrvIcon24.d.ts +4 -0
  22. package/CaretupdownStrokeSrvIcon24.js +9 -0
  23. package/EditStrokeSrvIcon16.d.ts +4 -0
  24. package/EditStrokeSrvIcon16.js +9 -0
  25. package/EditStrokeSrvIcon20.d.ts +4 -0
  26. package/EditStrokeSrvIcon20.js +9 -0
  27. package/EditStrokeSrvIcon24.d.ts +4 -0
  28. package/EditStrokeSrvIcon24.js +9 -0
  29. package/EditStrokeSrvIcon32.d.ts +4 -0
  30. package/EditStrokeSrvIcon32.js +9 -0
  31. package/ErrorStrokeStsIcon16.js +1 -1
  32. package/ExitStrokeNavIcon20.d.ts +4 -0
  33. package/ExitStrokeNavIcon20.js +9 -0
  34. package/ExitStrokeNavIcon24.d.ts +4 -0
  35. package/ExitStrokeNavIcon24.js +9 -0
  36. package/ExitStrokeNavIcon32.d.ts +4 -0
  37. package/ExitStrokeNavIcon32.js +9 -0
  38. package/HelpSysIcon96.d.ts +4 -0
  39. package/HelpSysIcon96.js +24 -0
  40. package/LinkStrokeSrvIcon16.js +1 -1
  41. package/LinkStrokeSrvIcon20.d.ts +4 -0
  42. package/LinkStrokeSrvIcon20.js +9 -0
  43. package/LinkStrokeSrvIcon24.d.ts +4 -0
  44. package/LinkStrokeSrvIcon24.js +9 -0
  45. package/NotfoundSysIcon84.d.ts +4 -0
  46. package/NotfoundSysIcon84.js +37 -0
  47. package/NotfoundSysIcon96.d.ts +4 -0
  48. package/NotfoundSysIcon96.js +37 -0
  49. package/ServicesetupSysIcon128.d.ts +4 -0
  50. package/ServicesetupSysIcon128.js +23 -0
  51. package/ServicesetupSysIcon84.d.ts +4 -0
  52. package/ServicesetupSysIcon84.js +23 -0
  53. package/ServicesetupSysIcon96.d.ts +4 -0
  54. package/ServicesetupSysIcon96.js +23 -0
  55. package/index.d.ts +26 -0
  56. package/index.js +26 -0
  57. package/package.json +1 -1
  58. package/styles/icons.css +1 -1
  59. package/utils/getPathClassName.js +16 -16
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const ArrowleftStrokeSrvIcon24: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default ArrowleftStrokeSrvIcon24;
@@ -0,0 +1,13 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const ArrowleftStrokeSrvIcon24 = 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: "ArrowleftStrokeSrvIcon24", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("defs", null,
8
+ React.createElement("clipPath", { id: "a_arrowleft24" },
9
+ React.createElement("path", { fill: "#fff", fillOpacity: "0", d: "M0 0H24V24H0z", transform: "matrix(1 0 0 -1 0 24)" }))),
10
+ React.createElement("g", { clipPath: "url(#a_arrowleft24)" },
11
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "m7.27 10.99 3.96-4.32a.99.99 0 0 0-.06-1.41.99.99 0 0 0-1.41.06l-5.5 6c-.18.19-.26.42-.26.67 0 .26.08.49.26.68l5.5 6c.38.41 1 .44 1.41.06s.44-1 .06-1.41l-3.96-4.33H20c.56 0 1-.44 1-1s-.44-1-1-1z" })));
12
+ });
13
+ export default ArrowleftStrokeSrvIcon24;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const ArrowleftStrokeSrvIcon32: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default ArrowleftStrokeSrvIcon32;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const ArrowleftStrokeSrvIcon32 = 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: "ArrowleftStrokeSrvIcon32", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "m10.29 14.99 4.94-5.31a1 1 0 0 0-.05-1.42 1 1 0 0 0-1.42.05l-6.5 7c-.18.2-.26.42-.26.68 0 .14.02.26.06.37.05.11.11.22.2.32l6.5 7a1 1 0 0 0 1.42.05 1 1 0 0 0 .05-1.42l-4.94-5.32H25c.56 0 1-.44 1-1s-.44-1-1-1z" }));
8
+ });
9
+ export default ArrowleftStrokeSrvIcon32;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const ArrowrightStrokeSrvIcon24: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default ArrowrightStrokeSrvIcon24;
@@ -0,0 +1,13 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const ArrowrightStrokeSrvIcon24 = 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: "ArrowrightStrokeSrvIcon24", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("defs", null,
8
+ React.createElement("clipPath", { id: "a_arrowright24" },
9
+ React.createElement("path", { fill: "#fff", fillOpacity: "0", d: "M0 0H24V24H0z", transform: "matrix(1 0 0 -1 0 24)" }))),
10
+ React.createElement("g", { clipPath: "url(#a_arrowright24)" },
11
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "m17.72 10.99-3.96-4.32a.99.99 0 0 1 .06-1.41.99.99 0 0 1 1.41.06l5.5 6c.18.19.27.42.27.67 0 .26-.09.49-.27.68l-5.5 6c-.38.41-1 .44-1.41.06s-.44-1-.06-1.41l3.96-4.33H5c-.57 0-1-.44-1-1s.43-1 1-1z" })));
12
+ });
13
+ export default ArrowrightStrokeSrvIcon24;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const ArrowrightStrokeSrvIcon32: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default ArrowrightStrokeSrvIcon32;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const ArrowrightStrokeSrvIcon32 = 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: "ArrowrightStrokeSrvIcon32", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "m22.7 14.99-4.94-5.31a1 1 0 0 1 .05-1.42 1 1 0 0 1 1.42.05l6.5 7c.18.2.27.42.27.68 0 .14-.03.26-.07.37-.05.11-.11.22-.2.32l-6.5 7a1 1 0 0 1-1.42.05 1 1 0 0 1-.05-1.42l4.94-5.32H8c-.57 0-1-.44-1-1s.43-1 1-1z" }));
8
+ });
9
+ export default ArrowrightStrokeSrvIcon32;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const BellStrokeNavIcon20: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default BellStrokeNavIcon20;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const BellStrokeNavIcon20 = 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: "BellStrokeNavIcon20", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M9 2.07a6.563 6.563 0 0 0-1.73.48c-.4.16-.77.36-1.13.6-.39.26-.75.56-1.09.9s-.64.7-.9 1.09c-.24.36-.44.73-.6 1.13-.17.39-.3.8-.39 1.21C3.05 7.97 3 8.48 3 9v6H2c-.56 0-1 .43-1 1 0 .56.44 1 1 1h16c.56 0 1-.44 1-1 0-.57-.44-1-1-1h-1V9c0-.52-.06-1.03-.17-1.52-.09-.41-.22-.82-.39-1.21-.16-.4-.36-.77-.6-1.13-.26-.39-.56-.75-.9-1.09s-.7-.64-1.09-.9c-.36-.24-.73-.44-1.13-.6A6.6 6.6 0 0 0 11 2.07V1c0-.57-.44-1-1-1-.57 0-1 .43-1 1zM15 15V9c0-.39-.05-.76-.13-1.13-.06-.28-.15-.55-.27-.82-.11-.28-.25-.54-.42-.79-.18-.29-.4-.55-.65-.8s-.51-.47-.8-.65c-.25-.17-.51-.31-.79-.42-.27-.12-.54-.21-.82-.27a5.286 5.286 0 0 0-2.25 0c-.28.06-.55.15-.82.27-.28.11-.54.25-.79.42-.29.18-.55.4-.8.65s-.47.51-.65.8c-.17.25-.31.51-.42.79-.12.27-.21.54-.27.82C5.04 8.24 5 8.61 5 9v6zm-3 3H8c-.56 0-1 .43-1 1 0 .56.44 1 1 1h4c.56 0 1-.44 1-1 0-.57-.44-1-1-1" }));
8
+ });
9
+ export default BellStrokeNavIcon20;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const BellStrokeNavIcon24: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default BellStrokeNavIcon24;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const BellStrokeNavIcon24 = 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: "BellStrokeNavIcon24", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M11 4.07a6.563 6.563 0 0 0-1.73.48c-.4.16-.77.36-1.13.6-.39.26-.75.56-1.09.9s-.64.7-.9 1.09c-.24.36-.44.73-.6 1.13-.17.39-.3.8-.39 1.21-.11.49-.16 1-.16 1.52v6H4c-.56 0-1 .43-1 1 0 .56.44 1 1 1h16c.56 0 1-.44 1-1 0-.57-.44-1-1-1h-1v-6c0-.52-.06-1.03-.17-1.52-.09-.41-.22-.82-.39-1.21-.16-.4-.36-.77-.6-1.13-.26-.39-.56-.75-.9-1.09s-.7-.64-1.09-.9c-.36-.24-.73-.44-1.13-.6A6.6 6.6 0 0 0 13 4.07V3c0-.57-.44-1-1-1s-1 .43-1 1zM17 17v-6c0-.39-.05-.76-.13-1.13-.06-.28-.15-.55-.27-.82-.11-.28-.25-.54-.42-.79-.18-.29-.4-.55-.65-.8s-.51-.47-.8-.65c-.25-.17-.51-.31-.79-.42-.27-.12-.54-.21-.82-.27a5.286 5.286 0 0 0-2.25 0c-.28.06-.55.15-.82.27-.28.11-.54.25-.79.42-.29.18-.55.4-.8.65s-.47.51-.65.8c-.17.25-.31.51-.42.79-.12.27-.21.54-.27.82-.08.37-.12.74-.12 1.13v6zm-3 3h-4c-.57 0-1 .43-1 1 0 .56.43 1 1 1h4c.56 0 1-.44 1-1 0-.57-.44-1-1-1" }));
8
+ });
9
+ export default BellStrokeNavIcon24;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const BellStrokeNavIcon32: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default BellStrokeNavIcon32;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const BellStrokeNavIcon32 = 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: "BellStrokeNavIcon32", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M15 6.06c-.25.03-.5.07-.74.12-.47.11-.93.25-1.38.44-.45.2-.88.42-1.28.69-.45.3-.87.64-1.26 1.03s-.73.81-1.03 1.26c-.27.4-.49.83-.69 1.28-.19.45-.33.91-.44 1.38Q8 13.1 8 14v7H7c-.56 0-1 .43-1 1 0 .56.44 1 1 1h18c.56 0 1-.44 1-1 0-.57-.44-1-1-1h-1v-7c0-.6-.07-1.18-.19-1.74-.11-.47-.25-.93-.44-1.38-.2-.45-.42-.88-.69-1.28-.3-.45-.64-.87-1.03-1.26a8.2 8.2 0 0 0-1.26-1.03c-.4-.27-.83-.49-1.28-.69-.45-.19-.91-.33-1.38-.44-.24-.05-.49-.09-.73-.12V5c0-.57-.44-1-1-1s-1 .43-1 1zM22 21v-7q0-.69-.15-1.35c-.08-.33-.19-.67-.33-.99-.14-.33-.3-.65-.5-.95-.22-.34-.49-.66-.78-.96-.3-.29-.62-.56-.96-.78-.3-.2-.62-.36-.95-.5-.32-.14-.66-.25-.99-.33C16.9 8.04 16.45 8 16 8c-.46 0-.91.04-1.35.14-.33.08-.67.19-.99.33-.33.14-.65.3-.95.5-.34.22-.66.49-.96.78-.29.3-.56.62-.78.96-.2.3-.36.62-.5.95-.14.32-.25.66-.33.99-.1.44-.14.89-.14 1.35v7zm-4 4h-4c-.56 0-1 .43-1 1 0 .56.44 1 1 1h4c.56 0 1-.44 1-1 0-.57-.44-1-1-1" }));
8
+ });
9
+ export default BellStrokeNavIcon32;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const CalendarStrokeSrvIcon16: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default CalendarStrokeSrvIcon16;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const CalendarStrokeSrvIcon16 = 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: "CalendarStrokeSrvIcon16", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M6 1v1h4V1c0-.56.44-1 1-1s1 .44 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-.56.44-1 1-1s1 .44 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" }));
8
+ });
9
+ export default CalendarStrokeSrvIcon16;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const CaretupdownStrokeSrvIcon16: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default CaretupdownStrokeSrvIcon16;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const CaretupdownStrokeSrvIcon16 = 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: "CaretupdownStrokeSrvIcon16", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M13.24 5.66c-.36.41-1 .45-1.41.08L8 2.33 4.16 5.74a.997.997 0 0 1-1.41-.08.997.997 0 0 1 .08-1.41l4.5-4c.38-.34.95-.34 1.33 0l4.5 4c.41.36.45 1 .08 1.41m-1.41 4.59a.997.997 0 0 1 1.41.08c.37.41.33 1.05-.08 1.41l-4.5 4c-.38.34-.95.34-1.33 0l-4.5-4c-.41-.36-.45-1-.08-1.41.36-.41 1-.45 1.41-.08L8 13.66z" }));
8
+ });
9
+ export default CaretupdownStrokeSrvIcon16;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const CaretupdownStrokeSrvIcon20: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default CaretupdownStrokeSrvIcon20;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const CaretupdownStrokeSrvIcon20 = 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: "CaretupdownStrokeSrvIcon20", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M15.24 7.66c-.36.41-1 .45-1.41.08L10 4.33 6.16 7.74a.997.997 0 0 1-1.41-.08.997.997 0 0 1 .08-1.41l4.5-4c.38-.34.95-.34 1.33 0l4.5 4c.41.36.45 1 .08 1.41m-1.41 4.59a.997.997 0 0 1 1.41.08c.37.41.33 1.05-.08 1.41l-4.5 4c-.38.34-.95.34-1.33 0l-4.5-4c-.41-.36-.45-1-.08-1.41.36-.41 1-.45 1.41-.08L10 15.66z" }));
8
+ });
9
+ export default CaretupdownStrokeSrvIcon20;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const CaretupdownStrokeSrvIcon24: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default CaretupdownStrokeSrvIcon24;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const CaretupdownStrokeSrvIcon24 = 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: "CaretupdownStrokeSrvIcon24", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M5.76 8.67c.38.41 1 .44 1.41.06L12 4.38l4.82 4.35c.41.38 1.03.35 1.41-.06a.98.98 0 0 0-.07-1.41L12.67 2.3c-.23-.2-.45-.3-.67-.3-.23 0-.45.1-.68.3L5.83 7.26a.98.98 0 0 0-.07 1.41m1.41 6.59a.99.99 0 0 0-1.41.06.98.98 0 0 0 .07 1.41l5.49 4.96c.23.2.45.31.68.31.22 0 .44-.11.67-.31l5.49-4.96a.98.98 0 0 0 .07-1.41c-.38-.41-1-.44-1.41-.06L12 19.61z" }));
8
+ });
9
+ export default CaretupdownStrokeSrvIcon24;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const EditStrokeSrvIcon16: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default EditStrokeSrvIcon16;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const EditStrokeSrvIcon16 = 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: "EditStrokeSrvIcon16", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M10.88.73a2 2 0 0 0-.33.26L1.97 9.58a2 2 0 0 0-.49.78l-.8 2.42c-.07.21-.11.42-.11.62 0 .17.02.34.07.51.04.17.1.32.18.46.09.17.2.32.34.46s.29.25.46.34c.14.08.29.14.46.18.38.1.75.09 1.13-.04l2.42-.81c.15-.04.29-.11.42-.19s.25-.18.36-.29L15 5.44c.19-.2.33-.42.43-.67q.15-.36.15-.75t-.15-.75c-.04-.12-.1-.23-.17-.34a2.6 2.6 0 0 0-.26-.32L13.38 1c-.19-.2-.41-.34-.66-.44q-.36-.15-.75-.15c-.14 0-.27.01-.4.04-.12.02-.24.06-.35.11-.12.04-.23.1-.34.17m.02 2.75 1.07-1.07 1.61 1.61-1.07 1.07zM9.48 4.9l-6.1 6.09-.8 2.42 2.42-.8 6.09-6.1z" }));
8
+ });
9
+ export default EditStrokeSrvIcon16;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const EditStrokeSrvIcon20: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default EditStrokeSrvIcon20;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const EditStrokeSrvIcon20 = 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: "EditStrokeSrvIcon20", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M19.68 3.69a2.6 2.6 0 0 0-.26-.32l-2.8-2.8c-.1-.1-.21-.18-.32-.26-.11-.07-.22-.12-.34-.17-.11-.05-.23-.08-.35-.11a2.6 2.6 0 0 0-.78 0c-.12.03-.24.06-.35.11a2.1 2.1 0 0 0-.66.43L1.76 12.64c-.24.24-.41.52-.5.84L.08 17.45c-.11.37-.11.73-.01 1.09q.135.495.51.87c.13.14.27.25.43.33.14.08.29.14.44.18.36.1.73.1 1.09-.01l3.97-1.18c.33-.09.6-.26.84-.5L19.42 6.17a2.1 2.1 0 0 0 .43-.66c.05-.11.08-.23.11-.35.02-.13.04-.26.04-.39s-.02-.26-.04-.39c-.03-.12-.06-.24-.11-.35-.05-.12-.1-.23-.17-.34m-4.46-1.72 2.8 2.8-1.54 1.54-2.8-2.8zm-.14 5.74-2.8-2.8-9.13 9.13-1.17 3.97 3.97-1.17z" }));
8
+ });
9
+ export default EditStrokeSrvIcon20;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const EditStrokeSrvIcon24: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default EditStrokeSrvIcon24;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const EditStrokeSrvIcon24 = 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: "EditStrokeSrvIcon24", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M21.68 5.69a2.6 2.6 0 0 0-.26-.32l-2.8-2.8c-.1-.1-.21-.18-.32-.26-.11-.07-.22-.12-.34-.17-.11-.05-.23-.08-.35-.11a2.6 2.6 0 0 0-.78 0c-.12.03-.24.06-.35.11a2.1 2.1 0 0 0-.66.43L3.76 14.64c-.24.24-.41.52-.5.84l-1.18 3.97c-.11.37-.11.73-.01 1.09q.135.495.51.87c.13.14.27.25.43.33.14.08.29.14.44.18.36.1.73.1 1.09-.01l3.97-1.18c.32-.09.6-.26.84-.5L21.42 8.17a2.1 2.1 0 0 0 .43-.66c.05-.11.08-.23.11-.35.02-.13.04-.26.04-.39s-.02-.26-.04-.39c-.03-.12-.06-.24-.11-.35-.05-.12-.1-.23-.17-.34m-4.46-1.72 2.8 2.8-1.54 1.54-2.8-2.8zm-.14 5.74-2.8-2.8-9.13 9.13-1.17 3.97 3.97-1.17z" }));
8
+ });
9
+ export default EditStrokeSrvIcon24;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const EditStrokeSrvIcon32: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default EditStrokeSrvIcon32;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const EditStrokeSrvIcon32 = 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: "EditStrokeSrvIcon32", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M27.18 8.19a2.6 2.6 0 0 0-.26-.32l-2.8-2.8c-.1-.1-.21-.18-.32-.26-.11-.07-.22-.12-.34-.17-.11-.05-.23-.08-.35-.11a2.6 2.6 0 0 0-.78 0c-.12.03-.24.06-.35.11a2.1 2.1 0 0 0-.66.43L6.26 20.14c-.24.24-.41.52-.5.84l-1.18 3.97c-.11.36-.11.73-.01 1.09q.135.495.51.87c.13.14.27.25.43.33.14.08.29.14.44.18.36.1.73.1 1.09-.01l3.97-1.18c.33-.09.6-.26.84-.5l15.07-15.06a2.1 2.1 0 0 0 .43-.66c.05-.11.08-.23.11-.35.02-.13.04-.26.04-.39s-.02-.26-.04-.39c-.03-.12-.06-.24-.11-.35-.05-.12-.1-.23-.17-.34m-4.46-1.72 2.8 2.8-1.54 1.54-2.8-2.8zm-.14 5.74-2.8-2.8L7.65 21.54l-1.17 3.97 3.97-1.17z" }));
8
+ });
9
+ export default EditStrokeSrvIcon32;
@@ -4,6 +4,6 @@ import getPathClassName from "./utils/getPathClassName";
4
4
  const ErrorStrokeStsIcon16 = 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: "ErrorStrokeStsIcon16", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
- React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M12.99 16 3 15.99c-.54 0-1.04-.13-1.5-.4q-.645-.375-1.05-1.02-.21-.345-.33-.72c-.06-.22-.1-.45-.12-.68a2.907 2.907 0 0 1 .32-1.52l4.99-9.99c.15-.3.34-.57.57-.79.17-.18.37-.33.58-.45C6.93.14 7.44 0 8 0c.29 0 .58.04.86.12.23.07.45.17.67.3.21.12.41.27.58.45.23.22.42.49.57.79l4.99 9.99c.24.49.35 1 .31 1.53-.03.5-.18.96-.44 1.39-.27.43-.62.77-1.05 1.03-.21.11-.42.21-.64.27-.27.08-.56.13-.86.13M3 13.99l9.99.01q.18 0 .34-.06.08-.03.16-.08c.14-.08.26-.19.35-.34a.97.97 0 0 0 .04-.97l-4.99-10a.95.95 0 0 0-.38-.41C8.35 2.05 8.18 2 7.99 2c-.18 0-.35.05-.51.14s-.29.23-.38.41l-4.99 10c-.08.16-.12.33-.11.5a1 1 0 0 0 .5.81c.15.09.32.13.5.13M7 6v3c0 .56.44 1 1 1s1-.44 1-1V6c0-.56-.44-1-1-1s-1 .44-1 1m0 6c0-.56.44-1 1-1 .55 0 1 .44 1 1 0 .55-.45 1-1 1-.56 0-1-.45-1-1" }));
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M12.99 15.99H3c-.54 0-1.04-.14-1.5-.4-.44-.25-.79-.6-1.05-1.03q-.225-.345-.33-.72c-.07-.22-.1-.44-.12-.67-.01-.24 0-.47.04-.69.05-.29.14-.56.27-.83l5-10A3 3 0 0 1 6.46.41C6.93.13 7.44 0 8 0c.3 0 .58.04.86.12a2.897 2.897 0 0 1 1.25.74c.23.23.42.49.57.79l5 10c.24.48.34.99.31 1.52-.03.5-.18.97-.45 1.4q-.39.645-1.05 1.02c-.2.12-.41.21-.63.28q-.42.12-.87.12m-9.99-2h9.99c.18 0 .35-.04.5-.13.14-.08.26-.2.35-.34a1.014 1.014 0 0 0 .05-.98l-5-9.99c-.09-.18-.22-.32-.38-.42A1 1 0 0 0 8 2c-.19 0-.36.04-.52.13-.16.1-.29.24-.38.42l-5 9.99a1 1 0 0 0 .05.97c.09.15.21.26.35.35.15.08.32.13.5.13m4-8v3c0 .56.44 1 1 1s1-.44 1-1v-3c0-.56-.44-1-1-1s-1 .44-1 1m0 6c0-.55.44-1 1-1 .55 0 1 .45 1 1s-.45 1-1 1c-.56 0-1-.45-1-1" }));
8
8
  });
9
9
  export default ErrorStrokeStsIcon16;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const ExitStrokeNavIcon20: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default ExitStrokeNavIcon20;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const ExitStrokeNavIcon20 = 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: "ExitStrokeNavIcon20", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M5 19c-.22 0-.44-.03-.64-.07-.18-.04-.36-.1-.53-.17s-.34-.16-.49-.26c-.17-.11-.32-.24-.47-.38-.14-.15-.27-.3-.38-.47-.1-.15-.19-.31-.26-.49-.07-.17-.13-.35-.17-.53-.04-.2-.06-.42-.06-.63V4c0-.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-.06h8c.56 0 1 .44 1 1s-.44 1-1 1H5c-.09 0-.17 0-.25.02-.05.02-.1.03-.14.05-.06.03-.11.05-.15.08a1.2 1.2 0 0 0-.31.31c-.03.04-.05.09-.08.15-.02.04-.03.09-.05.14C4 3.83 4 3.91 4 4v12c0 .13.02.26.07.38s.13.23.22.32.2.17.32.22c.04.02.09.03.14.05.08.02.16.03.25.03h8c.56 0 1 .44 1 1s-.44 1-1 1zm8.48-13.71a1.07 1.07 0 0 0-1.47 0 .96.96 0 0 0 0 1.41L14.39 9H8.03C7.45 9 7 9.44 7 10c0 .55.45.99 1.03.99h6.36l-2.38 2.3a.96.96 0 0 0 0 1.41c.41.39 1.05.39 1.47 0l4.15-4c.24-.23.37-.47.37-.7 0-.24-.13-.48-.37-.71z" }));
8
+ });
9
+ export default ExitStrokeNavIcon20;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const ExitStrokeNavIcon24: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default ExitStrokeNavIcon24;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const ExitStrokeNavIcon24 = 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: "ExitStrokeNavIcon24", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M7 21c-.22 0-.44-.03-.64-.07-.18-.04-.36-.1-.53-.17s-.34-.16-.49-.26c-.17-.11-.32-.24-.47-.38-.14-.15-.27-.3-.38-.47-.1-.15-.19-.31-.26-.49-.07-.17-.13-.35-.17-.53-.04-.2-.06-.42-.06-.63V6c0-.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-.06h8c.56 0 1 .44 1 1s-.44 1-1 1H7c-.09 0-.17 0-.25.02-.05.02-.1.03-.14.05-.06.03-.11.05-.15.08a1.2 1.2 0 0 0-.31.31c-.03.04-.05.09-.08.15-.02.04-.03.09-.05.14C6 5.83 6 5.91 6 6v12c0 .13.02.26.07.38s.13.23.22.32.2.17.32.22c.04.02.09.03.14.05.08.02.16.03.25.03h8c.56 0 1 .44 1 1s-.44 1-1 1zm8.48-13.71a1.07 1.07 0 0 0-1.47 0 .96.96 0 0 0 0 1.41l2.38 2.3h-6.36C9.45 11 9 11.44 9 12c0 .55.45.99 1.03.99h6.36l-2.38 2.3a.96.96 0 0 0 0 1.41c.41.39 1.05.39 1.47 0l4.15-4c.24-.23.37-.47.37-.7 0-.24-.13-.48-.37-.71z" }));
8
+ });
9
+ export default ExitStrokeNavIcon24;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const ExitStrokeNavIcon32: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default ExitStrokeNavIcon32;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const ExitStrokeNavIcon32 = 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: "ExitStrokeNavIcon32", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M9 27h10c.56 0 1-.44 1-1s-.44-1-1-1H9c-.09 0-.17-.01-.25-.03-.05-.02-.1-.03-.14-.05-.06-.03-.11-.05-.15-.08a1.2 1.2 0 0 1-.31-.31c-.03-.04-.05-.09-.08-.15A1 1 0 0 1 8 24V8c0-.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-.05C8.83 7 8.91 7 9 7h10c.56 0 1-.44 1-1s-.44-1-1-1H9c-.22 0-.44.02-.64.06-.18.04-.36.1-.53.17-.18.07-.34.16-.49.26-.17.11-.32.24-.47.38-.14.15-.27.3-.38.47-.1.15-.19.31-.26.49-.07.17-.13.34-.17.52-.04.21-.06.43-.06.65v16c0 .21.02.43.06.63a3.104 3.104 0 0 0 .81 1.49c.15.14.3.27.47.38.15.1.32.19.49.26s.35.13.53.17c.2.04.42.07.64.07m16.92-11.39q-.075-.18-.21-.33l-5-4.99c-.26-.25-.63-.35-.97-.26-.35.09-.62.36-.71.71-.1.34 0 .71.26.97l3.3 3.29H15c-.56 0-1 .44-1 .99 0 .56.44 1 1 1h7.59l-3.3 3.29a1 1 0 0 0-.3.71 1 1 0 0 0 .3.71c.18.19.44.3.71.3.26 0 .52-.11.71-.3l5-5q.135-.135.21-.33a1 1 0 0 0 0-.76" }));
8
+ });
9
+ export default ExitStrokeNavIcon32;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { IMultiColorIconProps } from "./types";
3
+ declare const HelpSysIcon96: React.ForwardRefExoticComponent<IMultiColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default HelpSysIcon96;
@@ -0,0 +1,24 @@
1
+ import React from "react";
2
+ const HelpSysIcon96 = React.forwardRef((props, ref) => {
3
+ return React.createElement("svg", { width: "96", height: "96", fill: "none", viewBox: "0 0 96 96", name: "HelpSysIcon96", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
4
+ React.createElement("defs", null,
5
+ React.createElement("filter", { id: "b_help96", width: "64", height: "43.434", x: "16", y: "8", colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse" },
6
+ React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
7
+ React.createElement("feGaussianBlur", { in: "BackgroundImage", stdDeviation: "6.667" }),
8
+ React.createElement("feComposite", { in2: "SourceAlpha", operator: "in", result: "effect_backgroundBlur_1" }),
9
+ React.createElement("feBlend", { in: "SourceGraphic", in2: "effect_backgroundBlur_1", result: "shape" }),
10
+ React.createElement("feColorMatrix", { in: "SourceAlpha", result: "hardAlpha", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" }),
11
+ React.createElement("feOffset", { dy: "3" }),
12
+ React.createElement("feGaussianBlur", { stdDeviation: ".333" }),
13
+ React.createElement("feComposite", { in2: "hardAlpha", k2: "-1", k3: "1", operator: "arithmetic" }),
14
+ React.createElement("feColorMatrix", { values: "0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" }),
15
+ React.createElement("feBlend", { in2: "shape", result: "effect_innerShadow_2" })),
16
+ React.createElement("clipPath", { id: "a_help96" },
17
+ React.createElement("path", { fill: "#fff", fillOpacity: "0", d: "M0 0H96V96H0z" }))),
18
+ React.createElement("g", { clipPath: "url(#a_help96)" },
19
+ React.createElement("circle", { cx: "67", cy: "20", r: "15", fill: "#8291B3" }),
20
+ React.createElement("path", { stroke: "#8291B3", strokeLinecap: "round", strokeWidth: "3", d: "m21 55 27 37M35 55l13 37M75 55 48 92M61 55 48 92" }),
21
+ React.createElement("g", { filter: "url(#b_help96)" },
22
+ React.createElement("path", { fill: "#95A3C1", fillOpacity: ".4", fillRule: "evenodd", d: "M77.36 51.1C78.79 47.58 80 43.76 80 39.77 80 22.24 65.65 8 48 8 30.34 8 16 22.24 16 39.77c0 3.99 1.2 7.81 2.63 11.33.15.38.69.44.96.14C20.62 50.08 23.03 48 27 48c3.93 0 6.33 2.05 7.38 3.21.27.31.85.25 1.04-.12 1.19-2.28 5.02-8.09 12.99-8.06 7.3 0 10.99 5.79 12.16 8.06.19.37.76.43 1.04.12C62.65 50.05 65.05 48 69 48c3.96 0 6.37 2.08 7.4 3.24.27.3.81.24.96-.14" }))));
23
+ });
24
+ export default HelpSysIcon96;
@@ -4,6 +4,6 @@ import getPathClassName from "./utils/getPathClassName";
4
4
  const LinkStrokeSrvIcon16 = 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: "LinkStrokeSrvIcon16", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
- React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M4 3c-.56 0-1 .44-1 1v8c0 .55.44 1 1 1h8c.55 0 1-.45 1-1v-.5c0-.56.44-1 1-1 .55 0 1 .44 1 1v.5c0 1.65-1.35 3-3 3H4c-1.66 0-3-1.35-3-3V4c0-1.66 1.34-3 3-3h.5c.55 0 1 .44 1 1 0 .55-.45 1-1 1zm11 4.5V2.09c.01-.14 0-.28-.05-.41-.05-.12-.15-.29-.24-.39q-.18-.165-.39-.24a.95.95 0 0 0-.41-.05H8.5c-.56 0-1 .44-1 1s.44 1 1 1h3.08L6.79 7.79c-.39.4-.39 1.02 0 1.42.4.39 1.02.39 1.42 0L13 4.41V7.5c0 .56.44 1 1 1s1-.44 1-1" }));
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M3.99 3c-.55 0-1 .44-1 1v8c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-.5c0-.56.45-1 1-1s1 .44 1 1v.5c0 1.65-1.35 3-3 3h-8A3 3 0 0 1 1 12V4c0-1.66 1.34-3 2.99-3h.5c.55 0 1 .44 1 1 0 .55-.45 1-1 1zm11 4.5V2.09c.01-.14 0-.28-.05-.41-.05-.12-.14-.29-.24-.39q-.18-.165-.39-.24A.95.95 0 0 0 13.9 1H8.49c-.56 0-.99.44-.99 1s.43 1 .99 1h3.09L6.79 7.79a.99.99 0 0 0 0 1.42c.39.39 1.02.39 1.41 0l4.79-4.8V7.5c0 .56.44 1 1 1s1-.44 1-1" }));
8
8
  });
9
9
  export default LinkStrokeSrvIcon16;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const LinkStrokeSrvIcon20: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default LinkStrokeSrvIcon20;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const LinkStrokeSrvIcon20 = 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: "LinkStrokeSrvIcon20", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M5.99 5c-.55 0-1 .44-1 1v8c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-.5c0-.56.45-1 1-1s1 .44 1 1v.5c0 1.65-1.35 3-3 3h-8A3 3 0 0 1 3 14V6c0-1.66 1.34-3 2.99-3h.5c.55 0 1 .44 1 1 0 .55-.45 1-1 1zm11 4.5V4.09c.01-.14 0-.28-.05-.41-.05-.12-.14-.29-.24-.39q-.18-.165-.39-.24A.95.95 0 0 0 15.9 3h-5.41c-.56 0-.99.44-.99 1s.43 1 .99 1h3.09L8.79 9.79a.99.99 0 0 0 0 1.42c.39.39 1.02.39 1.41 0l4.79-4.8V9.5c0 .56.44 1 1 1s1-.44 1-1" }));
8
+ });
9
+ export default LinkStrokeSrvIcon20;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { ISingleColorIconProps } from "./types";
3
+ declare const LinkStrokeSrvIcon24: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default LinkStrokeSrvIcon24;
@@ -0,0 +1,9 @@
1
+ import React from "react";
2
+ import { useTheme } from "./ThemeProvider";
3
+ import getPathClassName from "./utils/getPathClassName";
4
+ const LinkStrokeSrvIcon24 = 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: "LinkStrokeSrvIcon24", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
7
+ React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M6.99 6c-.55 0-1 .44-1 1v10c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-2c0-.56.44-1 1-1 .55 0 1 .44 1 1v2c0 1.65-1.35 3-3 3h-10A3 3 0 0 1 4 17V7c0-1.66 1.34-3 2.99-3L9 4.02c.56 0 1 .45 1 1s-.44 1-1 1zm13 4.5V5.09c.01-.14 0-.28-.05-.41-.05-.12-.14-.29-.24-.39q-.18-.165-.39-.24c-.13-.05-.27-.06-.41-.05h-5.41c-.56 0-.99.44-.99 1s.43 1 .99 1h3.09l-4.79 4.79a.99.99 0 0 0 0 1.42c.39.39 1.02.39 1.41 0l4.79-4.8v3.09c0 .56.44 1 1 1s1-.44 1-1" }));
8
+ });
9
+ export default LinkStrokeSrvIcon24;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { IMultiColorIconProps } from "./types";
3
+ declare const NotfoundSysIcon84: React.ForwardRefExoticComponent<IMultiColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default NotfoundSysIcon84;
@@ -0,0 +1,37 @@
1
+ import React from "react";
2
+ const NotfoundSysIcon84 = React.forwardRef((props, ref) => {
3
+ return React.createElement("svg", { width: "84", height: "84", fill: "none", viewBox: "0 0 84 84", name: "NotfoundSysIcon84", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
4
+ React.createElement("defs", null,
5
+ React.createElement("filter", { id: "b_notfound84", width: "16", height: "60", x: "15", y: "12", colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse" },
6
+ React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
7
+ React.createElement("feGaussianBlur", { in: "BackgroundImage", stdDeviation: "6.667" }),
8
+ React.createElement("feComposite", { in2: "SourceAlpha", operator: "in", result: "effect_backgroundBlur_1" }),
9
+ React.createElement("feBlend", { in: "SourceGraphic", in2: "effect_backgroundBlur_1", result: "shape" }),
10
+ React.createElement("feColorMatrix", { in: "SourceAlpha", result: "hardAlpha", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" }),
11
+ React.createElement("feOffset", { dy: "3" }),
12
+ React.createElement("feGaussianBlur", { stdDeviation: ".333" }),
13
+ React.createElement("feComposite", { in2: "hardAlpha", k2: "-1", k3: "1", operator: "arithmetic" }),
14
+ React.createElement("feColorMatrix", { values: "0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" }),
15
+ React.createElement("feBlend", { in2: "shape", result: "effect_innerShadow_2" })),
16
+ React.createElement("filter", { id: "c_notfound84", width: "43", height: "60", x: "25", y: "12", colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse" },
17
+ React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
18
+ React.createElement("feGaussianBlur", { in: "BackgroundImage", stdDeviation: "6.667" }),
19
+ React.createElement("feComposite", { in2: "SourceAlpha", operator: "in", result: "effect_backgroundBlur_1" }),
20
+ React.createElement("feBlend", { in: "SourceGraphic", in2: "effect_backgroundBlur_1", result: "shape" }),
21
+ React.createElement("feColorMatrix", { in: "SourceAlpha", result: "hardAlpha", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" }),
22
+ React.createElement("feOffset", { dy: "3" }),
23
+ React.createElement("feGaussianBlur", { stdDeviation: ".333" }),
24
+ React.createElement("feComposite", { in2: "hardAlpha", k2: "-1", k3: "1", operator: "arithmetic" }),
25
+ React.createElement("feColorMatrix", { values: "0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" }),
26
+ React.createElement("feBlend", { in2: "shape", result: "effect_innerShadow_2" })),
27
+ React.createElement("clipPath", { id: "a_notfound84" },
28
+ React.createElement("path", { fill: "#fff", fillOpacity: "0", d: "M0 0H84V84H0z" }))),
29
+ React.createElement("g", { clipPath: "url(#a_notfound84)" },
30
+ React.createElement("g", { filter: "url(#b_notfound84)" },
31
+ React.createElement("path", { fill: "#95A3C1", fillOpacity: ".4", fillRule: "evenodd", d: "M31 12H21c-3.32 0-6 2.68-6 6v48c0 3.31 2.68 6 6 6h10z" })),
32
+ React.createElement("rect", { width: "20", height: "50", fill: "#8291B3", rx: "6", transform: "matrix(-1 0 0 1 40 17)" }),
33
+ React.createElement("g", { filter: "url(#c_notfound84)" },
34
+ React.createElement("path", { fill: "#95A3C1", fillOpacity: ".4", fillRule: "evenodd", d: "M62 12H31c-3.32 0-6 2.68-6 6v48c0 3.31 2.68 6 6 6h31c3.31 0 6-2.69 6-6V18c0-3.32-2.69-6-6-6" })),
35
+ React.createElement("path", { fill: "#FFFFFF", fillRule: "evenodd", d: "M47.5 40c-5.25 0-9.5 4.25-9.5 9.5 0 5.24 4.25 9.5 9.5 9.5 2.08 0 4-.67 5.57-1.81l4.37 4.36c.59.6 1.52.6 2.12 0 .59-.59.59-1.52 0-2.12l-4.37-4.36A9.44 9.44 0 0 0 57 49.5c0-5.25-4.26-9.5-9.5-9.5m0 3a6.5 6.5 0 1 0 0 13c3.58 0 6.5-2.92 6.5-6.5 0-3.59-2.92-6.5-6.5-6.5" })));
36
+ });
37
+ export default NotfoundSysIcon84;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { IMultiColorIconProps } from "./types";
3
+ declare const NotfoundSysIcon96: React.ForwardRefExoticComponent<IMultiColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default NotfoundSysIcon96;
@@ -0,0 +1,37 @@
1
+ import React from "react";
2
+ const NotfoundSysIcon96 = React.forwardRef((props, ref) => {
3
+ return React.createElement("svg", { width: "96", height: "96", fill: "none", viewBox: "0 0 96 96", name: "NotfoundSysIcon96", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
4
+ React.createElement("defs", null,
5
+ React.createElement("filter", { id: "b_notfound96", width: "16", height: "60", x: "21", y: "18", colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse" },
6
+ React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
7
+ React.createElement("feGaussianBlur", { in: "BackgroundImage", stdDeviation: "6.667" }),
8
+ React.createElement("feComposite", { in2: "SourceAlpha", operator: "in", result: "effect_backgroundBlur_1" }),
9
+ React.createElement("feBlend", { in: "SourceGraphic", in2: "effect_backgroundBlur_1", result: "shape" }),
10
+ React.createElement("feColorMatrix", { in: "SourceAlpha", result: "hardAlpha", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" }),
11
+ React.createElement("feOffset", { dy: "3" }),
12
+ React.createElement("feGaussianBlur", { stdDeviation: ".333" }),
13
+ React.createElement("feComposite", { in2: "hardAlpha", k2: "-1", k3: "1", operator: "arithmetic" }),
14
+ React.createElement("feColorMatrix", { values: "0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" }),
15
+ React.createElement("feBlend", { in2: "shape", result: "effect_innerShadow_2" })),
16
+ React.createElement("filter", { id: "c_notfound96", width: "43", height: "60", x: "31", y: "18", colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse" },
17
+ React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
18
+ React.createElement("feGaussianBlur", { in: "BackgroundImage", stdDeviation: "6.667" }),
19
+ React.createElement("feComposite", { in2: "SourceAlpha", operator: "in", result: "effect_backgroundBlur_1" }),
20
+ React.createElement("feBlend", { in: "SourceGraphic", in2: "effect_backgroundBlur_1", result: "shape" }),
21
+ React.createElement("feColorMatrix", { in: "SourceAlpha", result: "hardAlpha", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" }),
22
+ React.createElement("feOffset", { dy: "3" }),
23
+ React.createElement("feGaussianBlur", { stdDeviation: ".333" }),
24
+ React.createElement("feComposite", { in2: "hardAlpha", k2: "-1", k3: "1", operator: "arithmetic" }),
25
+ React.createElement("feColorMatrix", { values: "0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" }),
26
+ React.createElement("feBlend", { in2: "shape", result: "effect_innerShadow_2" })),
27
+ React.createElement("clipPath", { id: "a_notfound96" },
28
+ React.createElement("path", { fill: "#fff", fillOpacity: "0", d: "M0 0H96V96H0z" }))),
29
+ React.createElement("g", { clipPath: "url(#a_notfound96)" },
30
+ React.createElement("g", { filter: "url(#b_notfound96)" },
31
+ React.createElement("path", { fill: "#95A3C1", fillOpacity: ".4", fillRule: "evenodd", d: "M37 18H27c-3.32 0-6 2.68-6 6v48c0 3.31 2.68 6 6 6h10z" })),
32
+ React.createElement("rect", { width: "20", height: "50", fill: "#8291B3", rx: "6", transform: "matrix(-1 0 0 1 46 23)" }),
33
+ React.createElement("g", { filter: "url(#c_notfound96)" },
34
+ React.createElement("path", { fill: "#95A3C1", fillOpacity: ".4", fillRule: "evenodd", d: "M68 18H37c-3.32 0-6 2.68-6 6v48c0 3.31 2.68 6 6 6h31c3.31 0 6-2.69 6-6V24c0-3.32-2.69-6-6-6" })),
35
+ React.createElement("path", { fill: "#FFFFFF", fillRule: "evenodd", d: "M53.5 46c-5.25 0-9.5 4.25-9.5 9.5 0 5.24 4.25 9.5 9.5 9.5 2.08 0 4-.67 5.57-1.81l4.37 4.36c.59.6 1.52.6 2.12 0 .59-.59.59-1.52 0-2.12l-4.37-4.36A9.44 9.44 0 0 0 63 55.5c0-5.25-4.26-9.5-9.5-9.5m0 3a6.5 6.5 0 1 0 0 13c3.58 0 6.5-2.92 6.5-6.5 0-3.59-2.92-6.5-6.5-6.5" })));
36
+ });
37
+ export default NotfoundSysIcon96;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { IMultiColorIconProps } from "./types";
3
+ declare const ServicesetupSysIcon128: React.ForwardRefExoticComponent<IMultiColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default ServicesetupSysIcon128;
@@ -0,0 +1,23 @@
1
+ import React from "react";
2
+ const ServicesetupSysIcon128 = React.forwardRef((props, ref) => {
3
+ return React.createElement("svg", { width: "128", height: "128", fill: "none", viewBox: "0 0 128 128", name: "ServicesetupSysIcon128", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
4
+ React.createElement("defs", null,
5
+ React.createElement("filter", { id: "b_servicesetup128", width: "90", height: "90", x: "11", y: "20", colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse" },
6
+ React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
7
+ React.createElement("feGaussianBlur", { in: "BackgroundImage", stdDeviation: "6.667" }),
8
+ React.createElement("feComposite", { in2: "SourceAlpha", operator: "in", result: "effect_backgroundBlur_1" }),
9
+ React.createElement("feBlend", { in: "SourceGraphic", in2: "effect_backgroundBlur_1", result: "shape" }),
10
+ React.createElement("feColorMatrix", { in: "SourceAlpha", result: "hardAlpha", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" }),
11
+ React.createElement("feOffset", { dy: "2" }),
12
+ React.createElement("feGaussianBlur", { stdDeviation: ".333" }),
13
+ React.createElement("feComposite", { in2: "hardAlpha", k2: "-1", k3: "1", operator: "arithmetic" }),
14
+ React.createElement("feColorMatrix", { values: "0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" }),
15
+ React.createElement("feBlend", { in2: "shape", result: "effect_innerShadow_2" })),
16
+ React.createElement("clipPath", { id: "a_servicesetup128" },
17
+ React.createElement("path", { fill: "#fff", fillOpacity: "0", d: "M0 0H128V128H0z" }))),
18
+ React.createElement("g", { clipPath: "url(#a_servicesetup128)" },
19
+ React.createElement("path", { fill: "#8291B3", fillRule: "evenodd", d: "M95.03 18c.61 0 1.15.4 1.32.99l1.25 4.35c1.39.38 2.71.94 3.94 1.64l3.93-2.2c.53-.29 1.21-.2 1.64.23l2.87 2.87c.43.44.53 1.11.23 1.64l-2.2 3.93c.7 1.23 1.26 2.55 1.64 3.94l4.35 1.25c.59.17 1 .71 1 1.32v4.07c0 .61-.41 1.15-1 1.32l-4.35 1.25c-.38 1.39-.94 2.71-1.64 3.94l2.2 3.93c.3.53.2 1.2-.23 1.64l-2.87 2.87c-.43.43-1.11.52-1.64.23l-3.93-2.2c-1.23.7-2.55 1.26-3.94 1.64L96.35 61c-.17.59-.71 1-1.32 1h-4.07c-.61 0-1.15-.41-1.32-1l-1.25-4.35c-1.39-.38-2.71-.94-3.94-1.64l-3.93 2.2c-.53.29-1.2.2-1.64-.23l-2.87-2.87c-.43-.44-.52-1.11-.23-1.64l2.2-3.93c-.7-1.23-1.26-2.55-1.64-3.94l-4.35-1.25c-.59-.17-.99-.71-.99-1.32v-4.07c0-.61.4-1.15.99-1.32l4.35-1.25c.38-1.39.94-2.71 1.64-3.94l-2.2-3.93c-.29-.53-.2-1.2.23-1.64l2.87-2.87c.44-.43 1.11-.52 1.64-.23l3.93 2.2c1.23-.7 2.55-1.26 3.94-1.64l1.25-4.35c.17-.59.71-.99 1.32-.99z" }),
20
+ React.createElement("g", { filter: "url(#b_servicesetup128)" },
21
+ React.createElement("path", { fill: "#95A3C1", fillOpacity: ".4", fillRule: "evenodd", d: "M60.15 20c1.25 0 2.36.83 2.7 2.03l2.56 8.89c2.84.78 5.55 1.93 8.05 3.35l8.05-4.48c1.1-.61 2.47-.42 3.36.47l5.86 5.86c.89.89 1.08 2.26.47 3.36l-4.48 8.05c1.42 2.5 2.57 5.21 3.35 8.05l8.89 2.56c1.2.34 2.04 1.45 2.04 2.7v8.31c0 1.25-.84 2.36-2.04 2.7l-8.89 2.56c-.78 2.84-1.93 5.55-3.35 8.06l4.48 8.04c.61 1.1.42 2.47-.47 3.36l-5.86 5.86c-.89.89-2.26 1.08-3.36.47l-8.05-4.48c-2.5 1.42-5.21 2.57-8.05 3.35l-2.56 8.89a2.82 2.82 0 0 1-2.7 2.04h-8.31c-1.25 0-2.36-.84-2.7-2.04l-2.56-8.89c-2.84-.78-5.55-1.93-8.05-3.35l-8.05 4.48c-1.1.61-2.47.42-3.36-.47l-5.86-5.86a2.82 2.82 0 0 1-.47-3.36l4.48-8.04a35.5 35.5 0 0 1-3.35-8.06l-8.89-2.56a2.81 2.81 0 0 1-2.03-2.7v-8.31c0-1.25.83-2.36 2.03-2.7l8.89-2.56c.78-2.84 1.93-5.55 3.35-8.05l-4.48-8.05c-.61-1.1-.42-2.47.47-3.36l5.86-5.86c.89-.89 2.26-1.08 3.36-.47l8.05 4.48c2.5-1.42 5.21-2.57 8.05-3.35l2.56-8.89c.34-1.2 1.45-2.03 2.7-2.03zM56 51c-7.74 0-14 6.26-14 14 0 7.73 6.26 14 14 14 7.73 0 14-6.27 14-14 0-7.74-6.27-14-14-14" }))));
22
+ });
23
+ export default ServicesetupSysIcon128;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { IMultiColorIconProps } from "./types";
3
+ declare const ServicesetupSysIcon84: React.ForwardRefExoticComponent<IMultiColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default ServicesetupSysIcon84;
@@ -0,0 +1,23 @@
1
+ import React from "react";
2
+ const ServicesetupSysIcon84 = React.forwardRef((props, ref) => {
3
+ return React.createElement("svg", { width: "84", height: "84", fill: "none", viewBox: "0 0 84 84", name: "ServicesetupSysIcon84", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
4
+ React.createElement("defs", null,
5
+ React.createElement("filter", { id: "b_servicesetup84", width: "68", height: "68", x: "3", y: "9.25", colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse" },
6
+ React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
7
+ React.createElement("feGaussianBlur", { in: "BackgroundImage", stdDeviation: "6.667" }),
8
+ React.createElement("feComposite", { in2: "SourceAlpha", operator: "in", result: "effect_backgroundBlur_1" }),
9
+ React.createElement("feBlend", { in: "SourceGraphic", in2: "effect_backgroundBlur_1", result: "shape" }),
10
+ React.createElement("feColorMatrix", { in: "SourceAlpha", result: "hardAlpha", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" }),
11
+ React.createElement("feOffset", { dy: "2" }),
12
+ React.createElement("feGaussianBlur", { stdDeviation: ".333" }),
13
+ React.createElement("feComposite", { in2: "hardAlpha", k2: "-1", k3: "1", operator: "arithmetic" }),
14
+ React.createElement("feColorMatrix", { values: "0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" }),
15
+ React.createElement("feBlend", { in2: "shape", result: "effect_innerShadow_2" })),
16
+ React.createElement("clipPath", { id: "a_servicesetup84" },
17
+ React.createElement("path", { fill: "#fff", fillOpacity: "0", d: "M0 0H84V84H0z" }))),
18
+ React.createElement("g", { clipPath: "url(#a_servicesetup84)" },
19
+ React.createElement("path", { fill: "#8291B3", fillRule: "evenodd", d: "M65.47 7c.45 0 .84.29.96.72l.91 3.16c1.01.28 1.98.68 2.87 1.19l2.86-1.59a1 1 0 0 1 1.19.16l2.09 2.09a1 1 0 0 1 .16 1.19l-1.59 2.86c.51.89.91 1.86 1.19 2.87l3.16.91c.43.12.73.51.73.96v2.95c0 .45-.3.84-.73.96l-3.16.91a12.5 12.5 0 0 1-1.19 2.87l1.59 2.86a1 1 0 0 1-.16 1.19l-2.09 2.09a1 1 0 0 1-1.19.16l-2.86-1.59c-.89.51-1.86.91-2.87 1.19l-.91 3.16c-.12.43-.51.73-.96.73h-2.95c-.45 0-.84-.3-.96-.73l-.91-3.16a12.5 12.5 0 0 1-2.87-1.19l-2.86 1.59a1 1 0 0 1-1.19-.16l-2.09-2.09a1 1 0 0 1-.16-1.19l1.59-2.86a12.5 12.5 0 0 1-1.19-2.87l-3.16-.91a.99.99 0 0 1-.72-.96v-2.95c0-.45.29-.84.72-.96l3.16-.91a12.5 12.5 0 0 1 1.19-2.87l-1.59-2.86a1 1 0 0 1 .16-1.19l2.09-2.09a1 1 0 0 1 1.19-.16l2.86 1.59a12.5 12.5 0 0 1 2.87-1.19l.91-3.16c.12-.43.51-.72.96-.72z" }),
20
+ React.createElement("g", { filter: "url(#b_servicesetup84)" },
21
+ React.createElement("path", { fill: "#95A3C1", fillOpacity: ".4", fillRule: "evenodd", d: "M40.13 9.25c.95 0 1.79.62 2.05 1.53l1.93 6.72c2.14.59 4.19 1.46 6.08 2.53l6.08-3.38a2.12 2.12 0 0 1 2.54.35l4.43 4.43c.67.67.82 1.71.35 2.54l-3.38 6.08a27 27 0 0 1 2.53 6.08l6.72 1.93c.91.26 1.54 1.1 1.54 2.05v6.27c0 .95-.63 1.79-1.54 2.05l-6.72 1.93a27 27 0 0 1-2.53 6.08l3.38 6.08c.47.83.32 1.87-.35 2.54l-4.43 4.43c-.67.67-1.71.82-2.54.35l-6.08-3.38a27 27 0 0 1-6.08 2.53l-1.93 6.72c-.26.91-1.1 1.54-2.05 1.54h-6.27c-.95 0-1.79-.63-2.05-1.54l-1.93-6.72a27 27 0 0 1-6.08-2.53l-6.08 3.38c-.83.47-1.87.32-2.54-.35l-4.43-4.43a2.12 2.12 0 0 1-.35-2.54l3.38-6.08a27 27 0 0 1-2.53-6.08l-6.72-1.93C3.62 48.17 3 47.33 3 46.38v-6.27c0-.95.62-1.79 1.53-2.05l6.72-1.93a27 27 0 0 1 2.53-6.08l-3.38-6.08a2.12 2.12 0 0 1 .35-2.54L15.18 17a2.12 2.12 0 0 1 2.54-.35l6.08 3.38a27 27 0 0 1 6.08-2.53l1.93-6.72c.26-.91 1.1-1.53 2.05-1.53zM37 35c-4.42 0-8 3.58-8 8 0 4.41 3.58 8 8 8 4.41 0 8-3.59 8-8 0-4.42-3.59-8-8-8" }))));
22
+ });
23
+ export default ServicesetupSysIcon84;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { IMultiColorIconProps } from "./types";
3
+ declare const ServicesetupSysIcon96: React.ForwardRefExoticComponent<IMultiColorIconProps & React.RefAttributes<SVGSVGElement>>;
4
+ export default ServicesetupSysIcon96;
@@ -0,0 +1,23 @@
1
+ import React from "react";
2
+ const ServicesetupSysIcon96 = React.forwardRef((props, ref) => {
3
+ return React.createElement("svg", { width: "96", height: "96", fill: "none", viewBox: "0 0 96 96", name: "ServicesetupSysIcon96", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
4
+ React.createElement("defs", null,
5
+ React.createElement("filter", { id: "b_servicesetup96", width: "68", height: "68", x: "8.25", y: "15", colorInterpolationFilters: "sRGB", filterUnits: "userSpaceOnUse" },
6
+ React.createElement("feFlood", { floodOpacity: "0", result: "BackgroundImageFix" }),
7
+ React.createElement("feGaussianBlur", { in: "BackgroundImage", stdDeviation: "6.667" }),
8
+ React.createElement("feComposite", { in2: "SourceAlpha", operator: "in", result: "effect_backgroundBlur_1" }),
9
+ React.createElement("feBlend", { in: "SourceGraphic", in2: "effect_backgroundBlur_1", result: "shape" }),
10
+ React.createElement("feColorMatrix", { in: "SourceAlpha", result: "hardAlpha", values: "0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" }),
11
+ React.createElement("feOffset", { dy: "2" }),
12
+ React.createElement("feGaussianBlur", { stdDeviation: ".333" }),
13
+ React.createElement("feComposite", { in2: "hardAlpha", k2: "-1", k3: "1", operator: "arithmetic" }),
14
+ React.createElement("feColorMatrix", { values: "0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" }),
15
+ React.createElement("feBlend", { in2: "shape", result: "effect_innerShadow_2" })),
16
+ React.createElement("clipPath", { id: "a_servicesetup96" },
17
+ React.createElement("path", { fill: "#fff", fillOpacity: "0", d: "M0 0H96V96H0z" }))),
18
+ React.createElement("g", { clipPath: "url(#a_servicesetup96)" },
19
+ React.createElement("path", { fill: "#8291B3", fillRule: "evenodd", d: "M70.72 12.75c.45 0 .84.29.96.72l.91 3.16c1.01.28 1.98.68 2.87 1.19l2.86-1.59a1 1 0 0 1 1.19.16l2.09 2.09a1 1 0 0 1 .16 1.19l-1.59 2.86c.51.89.91 1.86 1.19 2.87l3.16.91c.43.12.73.51.73.96v2.95c0 .45-.3.84-.73.96l-3.16.91a12.5 12.5 0 0 1-1.19 2.87l1.59 2.86a1 1 0 0 1-.16 1.19l-2.09 2.09a1 1 0 0 1-1.19.16l-2.86-1.59c-.89.51-1.86.91-2.87 1.19l-.91 3.16c-.12.43-.51.73-.96.73h-2.95c-.45 0-.84-.3-.96-.73l-.91-3.16a12.5 12.5 0 0 1-2.87-1.19l-2.86 1.59a1 1 0 0 1-1.19-.16l-2.09-2.09a1 1 0 0 1-.16-1.19l1.59-2.86a12.5 12.5 0 0 1-1.19-2.87l-3.16-.91a.99.99 0 0 1-.72-.96v-2.95c0-.45.29-.84.72-.96l3.16-.91a12.5 12.5 0 0 1 1.19-2.87l-1.59-2.86a1 1 0 0 1 .16-1.19l2.09-2.09a1 1 0 0 1 1.19-.16l2.86 1.59a12.5 12.5 0 0 1 2.87-1.19l.91-3.16c.12-.43.51-.72.96-.72z" }),
20
+ React.createElement("g", { filter: "url(#b_servicesetup96)" },
21
+ React.createElement("path", { fill: "#95A3C1", fillOpacity: ".4", fillRule: "evenodd", d: "M45.38 15c.95 0 1.79.62 2.05 1.53l1.93 6.72c2.14.59 4.19 1.46 6.08 2.53l6.08-3.38a2.12 2.12 0 0 1 2.54.35l4.43 4.43c.67.67.82 1.71.35 2.54l-3.38 6.08a27 27 0 0 1 2.53 6.08l6.72 1.93c.91.26 1.54 1.1 1.54 2.05v6.27c0 .95-.63 1.79-1.54 2.05l-6.72 1.93a27 27 0 0 1-2.53 6.08l3.38 6.08c.47.83.32 1.87-.35 2.54l-4.43 4.43c-.67.67-1.71.82-2.54.35l-6.08-3.38a27 27 0 0 1-6.08 2.53l-1.93 6.72c-.26.91-1.1 1.54-2.05 1.54h-6.27c-.95 0-1.79-.63-2.05-1.54l-1.93-6.72a27 27 0 0 1-6.08-2.53l-6.08 3.38c-.83.47-1.87.32-2.54-.35L16 70.81a2.12 2.12 0 0 1-.35-2.54l3.38-6.08a27 27 0 0 1-2.53-6.08l-6.72-1.93c-.91-.26-1.53-1.1-1.53-2.05v-6.27c0-.95.62-1.79 1.53-2.05l6.72-1.93a27 27 0 0 1 2.53-6.08l-3.38-6.08a2.12 2.12 0 0 1 .35-2.54l4.43-4.43a2.12 2.12 0 0 1 2.54-.35l6.08 3.38a27 27 0 0 1 6.08-2.53l1.93-6.72c.26-.91 1.1-1.53 2.05-1.53zM42 40c-4.98 0-9 4.02-9 9 0 4.97 4.02 9 9 9a9 9 0 0 0 9-9c0-4.98-4.03-9-9-9" }))));
22
+ });
23
+ export default ServicesetupSysIcon96;
package/index.d.ts CHANGED
@@ -5,12 +5,18 @@ export { default as GigaassistaintOtherBrdIcon32 } from "./GigaassistaintOtherBr
5
5
  export { default as NodocumentsMrkIcon128 } from "./NodocumentsMrkIcon128";
6
6
  export { default as NodocumentsMrkIcon84 } from "./NodocumentsMrkIcon84";
7
7
  export { default as NodocumentsMrkIcon96 } from "./NodocumentsMrkIcon96";
8
+ export { default as BellStrokeNavIcon20 } from "./BellStrokeNavIcon20";
9
+ export { default as BellStrokeNavIcon24 } from "./BellStrokeNavIcon24";
10
+ export { default as BellStrokeNavIcon32 } from "./BellStrokeNavIcon32";
8
11
  export { default as ChangeaccountFilledNavIcon24 } from "./ChangeaccountFilledNavIcon24";
9
12
  export { default as ChangeaccountStrokeNavIcon20 } from "./ChangeaccountStrokeNavIcon20";
10
13
  export { default as ChangeaccountStrokeNavIcon24 } from "./ChangeaccountStrokeNavIcon24";
11
14
  export { default as ChangeaccountStrokeNavIcon32 } from "./ChangeaccountStrokeNavIcon32";
12
15
  export { default as ChatFilledNavIcon24 } from "./ChatFilledNavIcon24";
13
16
  export { default as CreateFilledNavIcon24 } from "./CreateFilledNavIcon24";
17
+ export { default as ExitStrokeNavIcon20 } from "./ExitStrokeNavIcon20";
18
+ export { default as ExitStrokeNavIcon24 } from "./ExitStrokeNavIcon24";
19
+ export { default as ExitStrokeNavIcon32 } from "./ExitStrokeNavIcon32";
14
20
  export { default as HomeFilledNavIcon24 } from "./HomeFilledNavIcon24";
15
21
  export { default as MarketplaceFilledNavIcon24 } from "./MarketplaceFilledNavIcon24";
16
22
  export { default as PaymentsFilledNavIcon24 } from "./PaymentsFilledNavIcon24";
@@ -24,13 +30,18 @@ export { default as DefaulticonStrokePrdIcon24 } from "./DefaulticonStrokePrdIco
24
30
  export { default as DefaulticonStrokePrdIcon32 } from "./DefaulticonStrokePrdIcon32";
25
31
  export { default as ArrowdownStrokeSrvIcon20 } from "./ArrowdownStrokeSrvIcon20";
26
32
  export { default as ArrowleftStrokeSrvIcon20 } from "./ArrowleftStrokeSrvIcon20";
33
+ export { default as ArrowleftStrokeSrvIcon24 } from "./ArrowleftStrokeSrvIcon24";
34
+ export { default as ArrowleftStrokeSrvIcon32 } from "./ArrowleftStrokeSrvIcon32";
27
35
  export { default as ArrowrightStrokeSrvIcon20 } from "./ArrowrightStrokeSrvIcon20";
36
+ export { default as ArrowrightStrokeSrvIcon24 } from "./ArrowrightStrokeSrvIcon24";
37
+ export { default as ArrowrightStrokeSrvIcon32 } from "./ArrowrightStrokeSrvIcon32";
28
38
  export { default as ArrowupStrokeSrvIcon20 } from "./ArrowupStrokeSrvIcon20";
29
39
  export { default as AttachmentStrokeSrvIcon16 } from "./AttachmentStrokeSrvIcon16";
30
40
  export { default as AttachmentStrokeSrvIcon20 } from "./AttachmentStrokeSrvIcon20";
31
41
  export { default as AttachmentStrokeSrvIcon24 } from "./AttachmentStrokeSrvIcon24";
32
42
  export { default as AttachmentStrokeSrvIcon32 } from "./AttachmentStrokeSrvIcon32";
33
43
  export { default as BackspaceStrokeSrvIcon32 } from "./BackspaceStrokeSrvIcon32";
44
+ export { default as CalendarStrokeSrvIcon16 } from "./CalendarStrokeSrvIcon16";
34
45
  export { default as CalendarStrokeSrvIcon20 } from "./CalendarStrokeSrvIcon20";
35
46
  export { default as CalendarStrokeSrvIcon24 } from "./CalendarStrokeSrvIcon24";
36
47
  export { default as CalendarStrokeSrvIcon32 } from "./CalendarStrokeSrvIcon32";
@@ -48,6 +59,9 @@ export { default as CaretrightStrokeSrvIcon32 } from "./CaretrightStrokeSrvIcon3
48
59
  export { default as CaretupStrokeSrvIcon16 } from "./CaretupStrokeSrvIcon16";
49
60
  export { default as CaretupStrokeSrvIcon20 } from "./CaretupStrokeSrvIcon20";
50
61
  export { default as CaretupStrokeSrvIcon24 } from "./CaretupStrokeSrvIcon24";
62
+ export { default as CaretupdownStrokeSrvIcon16 } from "./CaretupdownStrokeSrvIcon16";
63
+ export { default as CaretupdownStrokeSrvIcon20 } from "./CaretupdownStrokeSrvIcon20";
64
+ export { default as CaretupdownStrokeSrvIcon24 } from "./CaretupdownStrokeSrvIcon24";
51
65
  export { default as CheckboxbulkStrokeSrvIcon24 } from "./CheckboxbulkStrokeSrvIcon24";
52
66
  export { default as CheckboxtickStrokeSrvIcon24 } from "./CheckboxtickStrokeSrvIcon24";
53
67
  export { default as ChevronrightStrokeSrvIcon20 } from "./ChevronrightStrokeSrvIcon20";
@@ -69,9 +83,15 @@ export { default as DotsverticalStrokeSrvIcon20 } from "./DotsverticalStrokeSrvI
69
83
  export { default as DotsverticalStrokeSrvIcon24 } from "./DotsverticalStrokeSrvIcon24";
70
84
  export { default as DotsverticalStrokeSrvIcon32 } from "./DotsverticalStrokeSrvIcon32";
71
85
  export { default as DragdotsStrokeSrvIcon24 } from "./DragdotsStrokeSrvIcon24";
86
+ export { default as EditStrokeSrvIcon16 } from "./EditStrokeSrvIcon16";
87
+ export { default as EditStrokeSrvIcon20 } from "./EditStrokeSrvIcon20";
88
+ export { default as EditStrokeSrvIcon24 } from "./EditStrokeSrvIcon24";
89
+ export { default as EditStrokeSrvIcon32 } from "./EditStrokeSrvIcon32";
72
90
  export { default as FaceidStrokeSrvIcon32 } from "./FaceidStrokeSrvIcon32";
73
91
  export { default as HintFilledSrvIcon16 } from "./HintFilledSrvIcon16";
74
92
  export { default as LinkStrokeSrvIcon16 } from "./LinkStrokeSrvIcon16";
93
+ export { default as LinkStrokeSrvIcon20 } from "./LinkStrokeSrvIcon20";
94
+ export { default as LinkStrokeSrvIcon24 } from "./LinkStrokeSrvIcon24";
75
95
  export { default as MinusStrokeSrvIcon16 } from "./MinusStrokeSrvIcon16";
76
96
  export { default as MinusStrokeSrvIcon20 } from "./MinusStrokeSrvIcon20";
77
97
  export { default as MinusStrokeSrvIcon24 } from "./MinusStrokeSrvIcon24";
@@ -132,3 +152,9 @@ export { default as WaitStrokeStsIcon24 } from "./WaitStrokeStsIcon24";
132
152
  export { default as WarningStrokeStsIcon16 } from "./WarningStrokeStsIcon16";
133
153
  export { default as WarningStrokeStsIcon20 } from "./WarningStrokeStsIcon20";
134
154
  export { default as WarningStrokeStsIcon24 } from "./WarningStrokeStsIcon24";
155
+ export { default as HelpSysIcon96 } from "./HelpSysIcon96";
156
+ export { default as NotfoundSysIcon84 } from "./NotfoundSysIcon84";
157
+ export { default as NotfoundSysIcon96 } from "./NotfoundSysIcon96";
158
+ export { default as ServicesetupSysIcon128 } from "./ServicesetupSysIcon128";
159
+ export { default as ServicesetupSysIcon84 } from "./ServicesetupSysIcon84";
160
+ export { default as ServicesetupSysIcon96 } from "./ServicesetupSysIcon96";
package/index.js CHANGED
@@ -4,12 +4,18 @@ export { default as GigaassistaintOtherBrdIcon32 } from "./GigaassistaintOtherBr
4
4
  export { default as NodocumentsMrkIcon128 } from "./NodocumentsMrkIcon128";
5
5
  export { default as NodocumentsMrkIcon84 } from "./NodocumentsMrkIcon84";
6
6
  export { default as NodocumentsMrkIcon96 } from "./NodocumentsMrkIcon96";
7
+ export { default as BellStrokeNavIcon20 } from "./BellStrokeNavIcon20";
8
+ export { default as BellStrokeNavIcon24 } from "./BellStrokeNavIcon24";
9
+ export { default as BellStrokeNavIcon32 } from "./BellStrokeNavIcon32";
7
10
  export { default as ChangeaccountFilledNavIcon24 } from "./ChangeaccountFilledNavIcon24";
8
11
  export { default as ChangeaccountStrokeNavIcon20 } from "./ChangeaccountStrokeNavIcon20";
9
12
  export { default as ChangeaccountStrokeNavIcon24 } from "./ChangeaccountStrokeNavIcon24";
10
13
  export { default as ChangeaccountStrokeNavIcon32 } from "./ChangeaccountStrokeNavIcon32";
11
14
  export { default as ChatFilledNavIcon24 } from "./ChatFilledNavIcon24";
12
15
  export { default as CreateFilledNavIcon24 } from "./CreateFilledNavIcon24";
16
+ export { default as ExitStrokeNavIcon20 } from "./ExitStrokeNavIcon20";
17
+ export { default as ExitStrokeNavIcon24 } from "./ExitStrokeNavIcon24";
18
+ export { default as ExitStrokeNavIcon32 } from "./ExitStrokeNavIcon32";
13
19
  export { default as HomeFilledNavIcon24 } from "./HomeFilledNavIcon24";
14
20
  export { default as MarketplaceFilledNavIcon24 } from "./MarketplaceFilledNavIcon24";
15
21
  export { default as PaymentsFilledNavIcon24 } from "./PaymentsFilledNavIcon24";
@@ -23,13 +29,18 @@ export { default as DefaulticonStrokePrdIcon24 } from "./DefaulticonStrokePrdIco
23
29
  export { default as DefaulticonStrokePrdIcon32 } from "./DefaulticonStrokePrdIcon32";
24
30
  export { default as ArrowdownStrokeSrvIcon20 } from "./ArrowdownStrokeSrvIcon20";
25
31
  export { default as ArrowleftStrokeSrvIcon20 } from "./ArrowleftStrokeSrvIcon20";
32
+ export { default as ArrowleftStrokeSrvIcon24 } from "./ArrowleftStrokeSrvIcon24";
33
+ export { default as ArrowleftStrokeSrvIcon32 } from "./ArrowleftStrokeSrvIcon32";
26
34
  export { default as ArrowrightStrokeSrvIcon20 } from "./ArrowrightStrokeSrvIcon20";
35
+ export { default as ArrowrightStrokeSrvIcon24 } from "./ArrowrightStrokeSrvIcon24";
36
+ export { default as ArrowrightStrokeSrvIcon32 } from "./ArrowrightStrokeSrvIcon32";
27
37
  export { default as ArrowupStrokeSrvIcon20 } from "./ArrowupStrokeSrvIcon20";
28
38
  export { default as AttachmentStrokeSrvIcon16 } from "./AttachmentStrokeSrvIcon16";
29
39
  export { default as AttachmentStrokeSrvIcon20 } from "./AttachmentStrokeSrvIcon20";
30
40
  export { default as AttachmentStrokeSrvIcon24 } from "./AttachmentStrokeSrvIcon24";
31
41
  export { default as AttachmentStrokeSrvIcon32 } from "./AttachmentStrokeSrvIcon32";
32
42
  export { default as BackspaceStrokeSrvIcon32 } from "./BackspaceStrokeSrvIcon32";
43
+ export { default as CalendarStrokeSrvIcon16 } from "./CalendarStrokeSrvIcon16";
33
44
  export { default as CalendarStrokeSrvIcon20 } from "./CalendarStrokeSrvIcon20";
34
45
  export { default as CalendarStrokeSrvIcon24 } from "./CalendarStrokeSrvIcon24";
35
46
  export { default as CalendarStrokeSrvIcon32 } from "./CalendarStrokeSrvIcon32";
@@ -47,6 +58,9 @@ export { default as CaretrightStrokeSrvIcon32 } from "./CaretrightStrokeSrvIcon3
47
58
  export { default as CaretupStrokeSrvIcon16 } from "./CaretupStrokeSrvIcon16";
48
59
  export { default as CaretupStrokeSrvIcon20 } from "./CaretupStrokeSrvIcon20";
49
60
  export { default as CaretupStrokeSrvIcon24 } from "./CaretupStrokeSrvIcon24";
61
+ export { default as CaretupdownStrokeSrvIcon16 } from "./CaretupdownStrokeSrvIcon16";
62
+ export { default as CaretupdownStrokeSrvIcon20 } from "./CaretupdownStrokeSrvIcon20";
63
+ export { default as CaretupdownStrokeSrvIcon24 } from "./CaretupdownStrokeSrvIcon24";
50
64
  export { default as CheckboxbulkStrokeSrvIcon24 } from "./CheckboxbulkStrokeSrvIcon24";
51
65
  export { default as CheckboxtickStrokeSrvIcon24 } from "./CheckboxtickStrokeSrvIcon24";
52
66
  export { default as ChevronrightStrokeSrvIcon20 } from "./ChevronrightStrokeSrvIcon20";
@@ -68,9 +82,15 @@ export { default as DotsverticalStrokeSrvIcon20 } from "./DotsverticalStrokeSrvI
68
82
  export { default as DotsverticalStrokeSrvIcon24 } from "./DotsverticalStrokeSrvIcon24";
69
83
  export { default as DotsverticalStrokeSrvIcon32 } from "./DotsverticalStrokeSrvIcon32";
70
84
  export { default as DragdotsStrokeSrvIcon24 } from "./DragdotsStrokeSrvIcon24";
85
+ export { default as EditStrokeSrvIcon16 } from "./EditStrokeSrvIcon16";
86
+ export { default as EditStrokeSrvIcon20 } from "./EditStrokeSrvIcon20";
87
+ export { default as EditStrokeSrvIcon24 } from "./EditStrokeSrvIcon24";
88
+ export { default as EditStrokeSrvIcon32 } from "./EditStrokeSrvIcon32";
71
89
  export { default as FaceidStrokeSrvIcon32 } from "./FaceidStrokeSrvIcon32";
72
90
  export { default as HintFilledSrvIcon16 } from "./HintFilledSrvIcon16";
73
91
  export { default as LinkStrokeSrvIcon16 } from "./LinkStrokeSrvIcon16";
92
+ export { default as LinkStrokeSrvIcon20 } from "./LinkStrokeSrvIcon20";
93
+ export { default as LinkStrokeSrvIcon24 } from "./LinkStrokeSrvIcon24";
74
94
  export { default as MinusStrokeSrvIcon16 } from "./MinusStrokeSrvIcon16";
75
95
  export { default as MinusStrokeSrvIcon20 } from "./MinusStrokeSrvIcon20";
76
96
  export { default as MinusStrokeSrvIcon24 } from "./MinusStrokeSrvIcon24";
@@ -131,3 +151,9 @@ export { default as WaitStrokeStsIcon24 } from "./WaitStrokeStsIcon24";
131
151
  export { default as WarningStrokeStsIcon16 } from "./WarningStrokeStsIcon16";
132
152
  export { default as WarningStrokeStsIcon20 } from "./WarningStrokeStsIcon20";
133
153
  export { default as WarningStrokeStsIcon24 } from "./WarningStrokeStsIcon24";
154
+ export { default as HelpSysIcon96 } from "./HelpSysIcon96";
155
+ export { default as NotfoundSysIcon84 } from "./NotfoundSysIcon84";
156
+ export { default as NotfoundSysIcon96 } from "./NotfoundSysIcon96";
157
+ export { default as ServicesetupSysIcon128 } from "./ServicesetupSysIcon128";
158
+ export { default as ServicesetupSysIcon84 } from "./ServicesetupSysIcon84";
159
+ export { default as ServicesetupSysIcon96 } from "./ServicesetupSysIcon96";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sberbusiness/icons-next",
3
- "version": "1.0.0-beta.3",
3
+ "version": "1.0.1",
4
4
  "author": "СберБизнес",
5
5
  "description": "Иконки интернет-банка СберБизнес",
6
6
  "main": "./index.js",
package/styles/icons.css CHANGED
@@ -1 +1 @@
1
- ._3x0rom { fill: #008985; } ._2vz0up { fill: #19BDB0; } ._1e12rrj { fill: #D10032; } ._1n3488q { fill: #F80C45; } ._854eh9 { fill: #EF4C01; } ._na1ikt { fill: #FF7A17; } ._1uzqu8y { fill: #0E57CC; } ._88l3wh { fill: #1297FE; } ._123x8ao { fill: #697591; } ._1rb1e9x { fill: #95A3C1; } ._1phuohi { fill: #1F1F22; fill-opacity: .45; } ._1t58yhj { fill: #FFFFFF; fill-opacity: .35; } ._1l52yq0 { fill: #FFFFFF; fill-opacity: 1; } ._1h0m4tb { fill: #FFFFFF; fill-opacity: 1; } @media (hover: hover) and (pointer: fine), only screen and (-ms-high-contrast:active), (-ms-high-contrast:none) { .hoverable:hover ._3x0rom { fill: #21A19A; } .hoverable:hover ._2vz0up { fill: #4BD9CF; } .hoverable:hover ._1e12rrj { fill: #E60037; } .hoverable:hover ._1n3488q { fill: #FF5571; } .hoverable:hover ._854eh9 { fill: #EF4C01; } .hoverable:hover ._na1ikt { fill: #FF7A17; } .hoverable:hover ._1uzqu8y { fill: #0E57CC; } .hoverable:hover ._88l3wh { fill: #1297FE; } .hoverable:hover ._123x8ao { fill: #697591; } .hoverable:hover ._1rb1e9x { fill: #95A3C1; } .hoverable:hover ._1phuohi { fill: #1F1F22; fill-opacity: 1; } .hoverable:hover ._1t58yhj { fill: #FFFFFF; fill-opacity: 1; } .hoverable:hover ._1l52yq0 { fill: #FFFFFF; fill-opacity: 1; } .hoverable:hover ._1h0m4tb { fill: #FFFFFF; fill-opacity: 1; } } .hoverable:not(:disabled):active ._3x0rom, .hoverable.active ._3x0rom { fill: #007777; } .hoverable:not(:disabled):active ._2vz0up, .hoverable.active ._2vz0up { fill: #008985; } .hoverable:not(:disabled):active ._1e12rrj, .hoverable.active ._1e12rrj { fill: #BD002C; } .hoverable:not(:disabled):active ._1n3488q, .hoverable.active ._1n3488q { fill: #D10032; } .hoverable:not(:disabled):active ._854eh9, .hoverable.active ._854eh9 { fill: #D10032; } .hoverable:not(:disabled):active ._na1ikt, .hoverable.active ._na1ikt { fill: #FF7A17; } .hoverable:not(:disabled):active ._1uzqu8y, .hoverable.active ._1uzqu8y { fill: #0E57CC; } .hoverable:not(:disabled):active ._88l3wh, .hoverable.active ._88l3wh { fill: #1297FE; } .hoverable:not(:disabled):active ._123x8ao, .hoverable.active ._123x8ao { fill: #697591; } .hoverable:not(:disabled):active ._1rb1e9x, .hoverable.active ._1rb1e9x { fill: #95A3C1; } .hoverable:not(:disabled):active ._1phuohi, .hoverable.active ._1phuohi { fill: #1F1F22; fill-opacity: 1; } .hoverable:not(:disabled):active ._1t58yhj, .hoverable.active ._1t58yhj { fill: #FFFFFF; fill-opacity: 1; } .hoverable:not(:disabled):active ._1l52yq0, .hoverable.active ._1l52yq0 { fill: #FFFFFF; fill-opacity: 1; } .hoverable:not(:disabled):active ._1h0m4tb, .hoverable.active ._1h0m4tb { fill: #FFFFFF; fill-opacity: 1; } .hoverable:disabled ._3x0rom, .hoverable.disabled ._3x0rom { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._2vz0up, .hoverable.disabled ._2vz0up { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._1e12rrj, .hoverable.disabled ._1e12rrj { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._1n3488q, .hoverable.disabled ._1n3488q { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._854eh9, .hoverable.disabled ._854eh9 { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._na1ikt, .hoverable.disabled ._na1ikt { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._1uzqu8y, .hoverable.disabled ._1uzqu8y { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._88l3wh, .hoverable.disabled ._88l3wh { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._123x8ao, .hoverable.disabled ._123x8ao { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._1rb1e9x, .hoverable.disabled ._1rb1e9x { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._1phuohi, .hoverable.disabled ._1phuohi { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._1t58yhj, .hoverable.disabled ._1t58yhj { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._1l52yq0, .hoverable.disabled ._1l52yq0 { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._1h0m4tb, .hoverable.disabled ._1h0m4tb { fill: #FFFFFF; fill-opacity: .15; }
1
+ ._30jjql { fill: #008985; } ._lydqv9 { fill: #19BDB0; } ._ghtpt4 { fill: #D10032; } ._sd5l3m { fill: #F80C45; } ._y80sqn { fill: #EF4C01; } ._kp995w { fill: #FF7A17; } ._10q9zoo { fill: #0E57CC; } ._10d15s6 { fill: #1297FE; } ._29a3aq { fill: #697591; } ._jpp2vt { fill: #95A3C1; } ._1orwxcg { fill: #1F1F22; fill-opacity: .45; } ._xa00qi { fill: #FFFFFF; fill-opacity: .35; } ._pxnr29 { fill: #FFFFFF; fill-opacity: 1; } ._1se948k { fill: #FFFFFF; fill-opacity: 1; } @media (hover: hover) and (pointer: fine), only screen and (-ms-high-contrast:active), (-ms-high-contrast:none) { .hoverable:hover ._30jjql { fill: #21A19A; } .hoverable:hover ._lydqv9 { fill: #4BD9CF; } .hoverable:hover ._ghtpt4 { fill: #E60037; } .hoverable:hover ._sd5l3m { fill: #FF5571; } .hoverable:hover ._y80sqn { fill: #EF4C01; } .hoverable:hover ._kp995w { fill: #FF7A17; } .hoverable:hover ._10q9zoo { fill: #0E57CC; } .hoverable:hover ._10d15s6 { fill: #1297FE; } .hoverable:hover ._29a3aq { fill: #697591; } .hoverable:hover ._jpp2vt { fill: #95A3C1; } .hoverable:hover ._1orwxcg { fill: #1F1F22; fill-opacity: 1; } .hoverable:hover ._xa00qi { fill: #FFFFFF; fill-opacity: 1; } .hoverable:hover ._pxnr29 { fill: #FFFFFF; fill-opacity: 1; } .hoverable:hover ._1se948k { fill: #FFFFFF; fill-opacity: 1; } } .hoverable:not(:disabled):active ._30jjql, .hoverable.active ._30jjql { fill: #007777; } .hoverable:not(:disabled):active ._lydqv9, .hoverable.active ._lydqv9 { fill: #008985; } .hoverable:not(:disabled):active ._ghtpt4, .hoverable.active ._ghtpt4 { fill: #BD002C; } .hoverable:not(:disabled):active ._sd5l3m, .hoverable.active ._sd5l3m { fill: #D10032; } .hoverable:not(:disabled):active ._y80sqn, .hoverable.active ._y80sqn { fill: #D10032; } .hoverable:not(:disabled):active ._kp995w, .hoverable.active ._kp995w { fill: #FF7A17; } .hoverable:not(:disabled):active ._10q9zoo, .hoverable.active ._10q9zoo { fill: #0E57CC; } .hoverable:not(:disabled):active ._10d15s6, .hoverable.active ._10d15s6 { fill: #1297FE; } .hoverable:not(:disabled):active ._29a3aq, .hoverable.active ._29a3aq { fill: #697591; } .hoverable:not(:disabled):active ._jpp2vt, .hoverable.active ._jpp2vt { fill: #95A3C1; } .hoverable:not(:disabled):active ._1orwxcg, .hoverable.active ._1orwxcg { fill: #1F1F22; fill-opacity: 1; } .hoverable:not(:disabled):active ._xa00qi, .hoverable.active ._xa00qi { fill: #FFFFFF; fill-opacity: 1; } .hoverable:not(:disabled):active ._pxnr29, .hoverable.active ._pxnr29 { fill: #FFFFFF; fill-opacity: 1; } .hoverable:not(:disabled):active ._1se948k, .hoverable.active ._1se948k { fill: #FFFFFF; fill-opacity: 1; } .hoverable:disabled ._30jjql, .hoverable.disabled ._30jjql { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._lydqv9, .hoverable.disabled ._lydqv9 { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._ghtpt4, .hoverable.disabled ._ghtpt4 { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._sd5l3m, .hoverable.disabled ._sd5l3m { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._y80sqn, .hoverable.disabled ._y80sqn { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._kp995w, .hoverable.disabled ._kp995w { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._10q9zoo, .hoverable.disabled ._10q9zoo { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._10d15s6, .hoverable.disabled ._10d15s6 { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._29a3aq, .hoverable.disabled ._29a3aq { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._jpp2vt, .hoverable.disabled ._jpp2vt { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._1orwxcg, .hoverable.disabled ._1orwxcg { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._xa00qi, .hoverable.disabled ._xa00qi { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._pxnr29, .hoverable.disabled ._pxnr29 { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._1se948k, .hoverable.disabled ._1se948k { fill: #FFFFFF; fill-opacity: .15; }
@@ -1,36 +1,36 @@
1
1
  import { EIconsTheme } from "../ThemeProvider";
2
2
  const themeToClassNamePalettes = [
3
3
  {
4
- [EIconsTheme.LIGHT]: "_3x0rom",
5
- [EIconsTheme.DARK]: "_2vz0up",
4
+ [EIconsTheme.LIGHT]: "_30jjql",
5
+ [EIconsTheme.DARK]: "_lydqv9",
6
6
  },
7
7
  {
8
- [EIconsTheme.LIGHT]: "_1e12rrj",
9
- [EIconsTheme.DARK]: "_1n3488q",
8
+ [EIconsTheme.LIGHT]: "_ghtpt4",
9
+ [EIconsTheme.DARK]: "_sd5l3m",
10
10
  },
11
11
  {
12
- [EIconsTheme.LIGHT]: "_854eh9",
13
- [EIconsTheme.DARK]: "_na1ikt",
12
+ [EIconsTheme.LIGHT]: "_y80sqn",
13
+ [EIconsTheme.DARK]: "_kp995w",
14
14
  },
15
15
  {
16
- [EIconsTheme.LIGHT]: "_1uzqu8y",
17
- [EIconsTheme.DARK]: "_88l3wh",
16
+ [EIconsTheme.LIGHT]: "_10q9zoo",
17
+ [EIconsTheme.DARK]: "_10d15s6",
18
18
  },
19
19
  {
20
- [EIconsTheme.LIGHT]: "_123x8ao",
21
- [EIconsTheme.DARK]: "_1rb1e9x",
20
+ [EIconsTheme.LIGHT]: "_29a3aq",
21
+ [EIconsTheme.DARK]: "_jpp2vt",
22
22
  },
23
23
  {
24
- [EIconsTheme.LIGHT]: "_1phuohi",
25
- [EIconsTheme.DARK]: "_1t58yhj",
24
+ [EIconsTheme.LIGHT]: "_1orwxcg",
25
+ [EIconsTheme.DARK]: "_xa00qi",
26
26
  },
27
27
  {
28
- [EIconsTheme.LIGHT]: "_1t58yhj",
29
- [EIconsTheme.DARK]: "_1phuohi",
28
+ [EIconsTheme.LIGHT]: "_xa00qi",
29
+ [EIconsTheme.DARK]: "_1orwxcg",
30
30
  },
31
31
  {
32
- [EIconsTheme.LIGHT]: "_1l52yq0",
33
- [EIconsTheme.DARK]: "_1h0m4tb",
32
+ [EIconsTheme.LIGHT]: "_pxnr29",
33
+ [EIconsTheme.DARK]: "_1se948k",
34
34
  },
35
35
  ];
36
36
  const getPathClassName = (paletteIndex, theme) => themeToClassNamePalettes[paletteIndex][theme];