@sberbusiness/icons-next 1.26.0 → 1.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AiMrkIcon128.d.ts +4 -0
- package/AiMrkIcon128.js +32 -0
- package/AiMrkIcon96.d.ts +4 -0
- package/AiMrkIcon96.js +32 -0
- package/BusinessguideStrokePrdIcon32.d.ts +4 -0
- package/BusinessguideStrokePrdIcon32.js +10 -0
- package/DocumentcrossStrokeSrvIcon20.d.ts +4 -0
- package/DocumentcrossStrokeSrvIcon20.js +10 -0
- package/DocumentcrossStrokeSrvIcon24.d.ts +4 -0
- package/DocumentcrossStrokeSrvIcon24.js +10 -0
- package/DocumentcrossStrokeSrvIcon32.d.ts +4 -0
- package/DocumentcrossStrokeSrvIcon32.js +10 -0
- package/DownloadStrokeSrvIcon16.d.ts +4 -0
- package/DownloadStrokeSrvIcon16.js +10 -0
- package/GigaassistaintOtherBrdIcon16.d.ts +4 -0
- package/GigaassistaintOtherBrdIcon16.js +9 -0
- package/NotenoughbonusesMrkIcon128.d.ts +4 -0
- package/NotenoughbonusesMrkIcon128.js +26 -0
- package/NotenoughbonusesMrkIcon96.d.ts +4 -0
- package/NotenoughbonusesMrkIcon96.js +26 -0
- package/PollStrokeSrvIcon20.d.ts +4 -0
- package/PollStrokeSrvIcon20.js +10 -0
- package/PollStrokeSrvIcon24.d.ts +4 -0
- package/PollStrokeSrvIcon24.js +10 -0
- package/PollStrokeSrvIcon32.d.ts +4 -0
- package/PollStrokeSrvIcon32.js +10 -0
- package/SalaryprojectMrkIcon128.d.ts +4 -0
- package/SalaryprojectMrkIcon128.js +57 -0
- package/SalaryprojectMrkIcon96.d.ts +4 -0
- package/SalaryprojectMrkIcon96.js +57 -0
- package/SberbusinessspasiboStrokePrdIcon16.d.ts +4 -0
- package/SberbusinessspasiboStrokePrdIcon16.js +14 -0
- package/TrustStrokePrdIcon20.d.ts +4 -0
- package/TrustStrokePrdIcon20.js +10 -0
- package/TrustStrokePrdIcon32.d.ts +4 -0
- package/TrustStrokePrdIcon32.js +10 -0
- package/index.d.ts +18 -0
- package/index.js +18 -0
- package/package.json +1 -1
- package/styles/icons.css +1 -1
- package/utils/getPathClassName.js +24 -24
package/AiMrkIcon128.js
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useTheme, EIconsTheme } from "./ThemeProvider";
|
|
3
|
+
const AiMrkIcon128 = 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: "AiMrkIcon128", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
|
|
8
|
+
React.createElement("path", { fill: "url(#a_ai128)", d: "M64 24c1.8 0 3.145 1.255 3.363 3.055C71.381 53.818 74.727 57.163 100.8 60.6c1.945.29 3.2 1.636 3.2 3.345 0 1.8-1.255 3.219-3.2 3.437C74.51 70.89 72.127 74.4 67.363 101c-.309 1.727-1.563 3-3.363 3-1.782 0-3.127-1.272-3.346-3.072-4.018-26.764-7.364-29.819-33.436-33.546C25.273 67.163 24 65.745 24 63.945c0-1.709 1.273-3.054 3.218-3.345 26.218-3.51 28.818-6.927 33.436-33.545C60.964 25.255 62.291 24 64 24" }),
|
|
9
|
+
React.createElement("path", { fill: "url(#b_ai128)", d: "M93.5 21c.597 0 1.052.427 1.123 1.023 1.364 9.038 2.487 10.16 11.283 11.326.654.1 1.094.554 1.094 1.136 0 .597-.44 1.08-1.094 1.152-8.867 1.18-9.677 2.373-11.283 11.354-.1.569-.526 1.009-1.123 1.009-.611 0-1.066-.44-1.137-1.037C91 37.925 89.876 36.9 81.08 35.637c-.654-.071-1.08-.555-1.08-1.152 0-.582.427-1.037 1.08-1.136 8.839-1.18 9.72-2.345 11.283-11.326.1-.596.554-1.023 1.137-1.023" }),
|
|
10
|
+
React.createElement("defs", null,
|
|
11
|
+
React.createElement("linearGradient", { id: "a_ai128", x1: "54.345", x2: "87.226", y1: "59.862", y2: "95.613", gradientUnits: "userSpaceOnUse" },
|
|
12
|
+
React.createElement("stop", { stopColor: "#21A19A" }),
|
|
13
|
+
React.createElement("stop", { offset: ".364", stopColor: "#50BEB8" }),
|
|
14
|
+
React.createElement("stop", { offset: "1", stopColor: "#A7B7DA" })),
|
|
15
|
+
React.createElement("linearGradient", { id: "b_ai128", x1: "90.904", x2: "105.442", y1: "34.5", y2: "34.5", gradientUnits: "userSpaceOnUse" },
|
|
16
|
+
React.createElement("stop", { stopColor: "#21A19A" }),
|
|
17
|
+
React.createElement("stop", { offset: "1", stopColor: "#50BEB8" }))));
|
|
18
|
+
case EIconsTheme.DARK:
|
|
19
|
+
return React.createElement("svg", { width: "128", height: "128", fill: "none", viewBox: "0 0 128 128", name: "AiMrkIcon128", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
|
|
20
|
+
React.createElement("path", { fill: "url(#a_ai128)", d: "M64 24c1.8 0 3.145 1.255 3.363 3.055C71.381 53.818 74.727 57.163 100.8 60.6c1.945.29 3.2 1.636 3.2 3.345 0 1.8-1.255 3.219-3.2 3.437C74.51 70.89 72.127 74.4 67.363 101c-.309 1.727-1.563 3-3.363 3-1.782 0-3.127-1.272-3.346-3.072-4.018-26.764-7.364-29.819-33.436-33.546C25.273 67.163 24 65.745 24 63.945c0-1.709 1.273-3.054 3.218-3.345 26.218-3.51 28.818-6.927 33.436-33.545C60.964 25.255 62.291 24 64 24" }),
|
|
21
|
+
React.createElement("path", { fill: "url(#b_ai128)", d: "M93.5 21c.597 0 1.052.427 1.123 1.023 1.364 9.038 2.487 10.16 11.283 11.326.654.1 1.094.554 1.094 1.136 0 .597-.44 1.08-1.094 1.152-8.867 1.18-9.677 2.373-11.283 11.354-.1.569-.526 1.009-1.123 1.009-.611 0-1.066-.44-1.137-1.037C91 37.925 89.876 36.9 81.08 35.637c-.654-.071-1.08-.555-1.08-1.152 0-.582.427-1.037 1.08-1.136 8.839-1.18 9.72-2.345 11.283-11.326.1-.596.554-1.023 1.137-1.023" }),
|
|
22
|
+
React.createElement("defs", null,
|
|
23
|
+
React.createElement("linearGradient", { id: "a_ai128", x1: "54.345", x2: "123.5", y1: "59.862", y2: "137", gradientUnits: "userSpaceOnUse" },
|
|
24
|
+
React.createElement("stop", { stopColor: "#21818A" }),
|
|
25
|
+
React.createElement("stop", { offset: ".364", stopColor: "#21A19A" }),
|
|
26
|
+
React.createElement("stop", { offset: "1", stopColor: "#4BA3A1" })),
|
|
27
|
+
React.createElement("linearGradient", { id: "b_ai128", x1: "90.904", x2: "119", y1: "34.5", y2: "33.5", gradientUnits: "userSpaceOnUse" },
|
|
28
|
+
React.createElement("stop", { stopColor: "#21818A" }),
|
|
29
|
+
React.createElement("stop", { offset: "1", stopColor: "#4BA3A1" }))));
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
export default AiMrkIcon128;
|
package/AiMrkIcon96.d.ts
ADDED
package/AiMrkIcon96.js
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useTheme, EIconsTheme } from "./ThemeProvider";
|
|
3
|
+
const AiMrkIcon96 = 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: "AiMrkIcon96", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
|
|
8
|
+
React.createElement("path", { fill: "url(#a_ai96)", d: "M48 18c1.35 0 2.359.941 2.523 2.291 3.013 20.073 5.522 22.582 25.077 25.16 1.459.217 2.4 1.226 2.4 2.508 0 1.35-.941 2.413-2.4 2.577C55.882 53.168 54.095 55.8 50.523 75.75 50.29 77.045 49.35 78 48 78c-1.336 0-2.345-.955-2.509-2.305-3.013-20.072-5.523-22.363-25.077-25.159C18.955 50.373 18 49.31 18 47.96c0-1.282.955-2.29 2.414-2.509 19.663-2.632 21.614-5.196 25.077-25.159C45.723 18.941 46.718 18 48 18" }),
|
|
9
|
+
React.createElement("path", { fill: "url(#b_ai96)", d: "M70 16c.442 0 .78.316.832.758 1.01 6.695 1.842 7.526 8.358 8.39.484.073.81.41.81.841 0 .442-.326.8-.81.853-6.569.874-7.168 1.758-8.358 8.41-.074.422-.39.748-.832.748-.453 0-.79-.326-.842-.769-1.01-6.694-1.842-7.452-8.358-8.39-.484-.052-.8-.41-.8-.852 0-.431.316-.768.8-.841 6.547-.874 7.2-1.738 8.358-8.39.074-.442.41-.758.842-.758" }),
|
|
10
|
+
React.createElement("defs", null,
|
|
11
|
+
React.createElement("linearGradient", { id: "a_ai96", x1: "40.759", x2: "65.419", y1: "44.897", y2: "71.71", gradientUnits: "userSpaceOnUse" },
|
|
12
|
+
React.createElement("stop", { stopColor: "#21A19A" }),
|
|
13
|
+
React.createElement("stop", { offset: ".364", stopColor: "#50BEB8" }),
|
|
14
|
+
React.createElement("stop", { offset: "1", stopColor: "#A7B7DA" })),
|
|
15
|
+
React.createElement("linearGradient", { id: "b_ai96", x1: "68.077", x2: "78.846", y1: "26", y2: "26", gradientUnits: "userSpaceOnUse" },
|
|
16
|
+
React.createElement("stop", { stopColor: "#21A19A" }),
|
|
17
|
+
React.createElement("stop", { offset: "1", stopColor: "#50BEB8" }))));
|
|
18
|
+
case EIconsTheme.DARK:
|
|
19
|
+
return React.createElement("svg", { width: "96", height: "96", fill: "none", viewBox: "0 0 96 96", name: "AiMrkIcon96", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
|
|
20
|
+
React.createElement("path", { fill: "url(#a_ai96)", d: "M48 18c1.35 0 2.359.941 2.523 2.291 3.013 20.073 5.522 22.582 25.077 25.16 1.459.217 2.4 1.226 2.4 2.508 0 1.35-.941 2.413-2.4 2.577C55.882 53.168 54.095 55.8 50.523 75.75 50.29 77.045 49.35 78 48 78c-1.336 0-2.345-.955-2.509-2.305-3.013-20.072-5.523-22.363-25.077-25.159C18.955 50.373 18 49.31 18 47.96c0-1.282.955-2.29 2.414-2.509 19.663-2.632 21.614-5.196 25.077-25.159C45.723 18.941 46.718 18 48 18" }),
|
|
21
|
+
React.createElement("path", { fill: "url(#b_ai96)", d: "M70 16c.442 0 .78.316.832.758 1.01 6.695 1.842 7.526 8.358 8.39.484.073.81.41.81.841 0 .442-.326.8-.81.853-6.569.874-7.168 1.758-8.358 8.41-.074.422-.39.748-.832.748-.453 0-.79-.326-.842-.769-1.01-6.694-1.842-7.452-8.358-8.39-.484-.052-.8-.41-.8-.852 0-.431.316-.768.8-.841 6.547-.874 7.2-1.738 8.358-8.39.074-.442.41-.758.842-.758" }),
|
|
22
|
+
React.createElement("defs", null,
|
|
23
|
+
React.createElement("linearGradient", { id: "a_ai96", x1: "40.759", x2: "92.625", y1: "44.897", y2: "102.75", gradientUnits: "userSpaceOnUse" },
|
|
24
|
+
React.createElement("stop", { stopColor: "#21818A" }),
|
|
25
|
+
React.createElement("stop", { offset: ".364", stopColor: "#21A19A" }),
|
|
26
|
+
React.createElement("stop", { offset: "1", stopColor: "#4BA3A1" })),
|
|
27
|
+
React.createElement("linearGradient", { id: "b_ai96", x1: "68.077", x2: "88.889", y1: "26", y2: "25.259", gradientUnits: "userSpaceOnUse" },
|
|
28
|
+
React.createElement("stop", { stopColor: "#21818A" }),
|
|
29
|
+
React.createElement("stop", { offset: "1", stopColor: "#4BA3A1" }))));
|
|
30
|
+
}
|
|
31
|
+
});
|
|
32
|
+
export default AiMrkIcon96;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useTheme } from "./ThemeProvider";
|
|
3
|
+
import getPathClassName from "./utils/getPathClassName";
|
|
4
|
+
const BusinessguideStrokePrdIcon32 = 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: "BusinessguideStrokePrdIcon32", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
|
|
7
|
+
React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M12 5a1 1 0 1 1 0 2H8.826c.11.313.174.649.174 1v17a1 1 0 1 0 2 0v-3a1 1 0 0 1 1-1h11v-1a1 1 0 1 1 2 0v1h1a1 1 0 0 1 1 1v3a3 3 0 0 1-3 3H10l-.154-.004A3 3 0 0 1 7 25V8a1 1 0 0 0-2 0v1a1 1 0 0 1-2 0V8a3 3 0 0 1 3-3zm1 20c0 .351-.063.687-.174 1H24a1 1 0 0 0 1-1v-2H13z", clipRule: "evenodd" }),
|
|
8
|
+
React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M22 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16m-1.687 11c.13.586.294 1.11.485 1.556.24.559.5.948.737 1.182.233.23.389.262.465.262s.232-.032.465-.262c.237-.234.497-.623.737-1.182.191-.446.355-.97.485-1.556zm-3.508 0a6 6 0 0 0 2.062 2.118c-.25-.63-.45-1.345-.597-2.118zm8.925 0a11.6 11.6 0 0 1-.598 2.118A6 6 0 0 0 27.195 13zm-9.645-4q-.084.489-.085 1 .001.511.085 1h1.944a17 17 0 0 1 0-2zm3.951 0c-.021.325-.036.658-.036 1s.015.675.036 1h3.928c.021-.325.036-.658.036-1s-.015-.675-.036-1zm5.935 0a17 17 0 0 1 0 2h1.944q.084-.489.085-1-.001-.511-.085-1zm-7.104-4.12A6 6 0 0 0 16.805 7h1.465c.146-.773.347-1.488.597-2.12M22 4c-.076 0-.232.032-.465.262-.237.234-.497.623-.737 1.182-.191.446-.355.97-.485 1.556h3.375a9 9 0 0 0-.486-1.556c-.24-.559-.5-.948-.737-1.182C22.232 4.032 22.076 4 22 4m3.132.88c.25.632.452 1.347.598 2.12h1.465a6 6 0 0 0-2.063-2.12", clipRule: "evenodd" }));
|
|
9
|
+
});
|
|
10
|
+
export default BusinessguideStrokePrdIcon32;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useTheme } from "./ThemeProvider";
|
|
3
|
+
import getPathClassName from "./utils/getPathClassName";
|
|
4
|
+
const DocumentcrossStrokeSrvIcon20 = 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: "DocumentcrossStrokeSrvIcon20", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
|
|
7
|
+
React.createElement("path", { className: pathClassName, d: "M10 0a1 1 0 1 1 0 2H4a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V8.5a1 1 0 1 1 2 0V17a3 3 0 0 1-3 3H4a3 3 0 0 1-3-3V3a3 3 0 0 1 3-3z" }),
|
|
8
|
+
React.createElement("path", { className: pathClassName, d: "M12 14a1 1 0 1 1 0 2H6a1 1 0 1 1 0-2zM8 10a1 1 0 1 1 0 2H6a1 1 0 1 1 0-2zM8 6a1 1 0 0 1 0 2H6a1 1 0 0 1 0-2zM17.414.414a1 1 0 0 1 1.414 1.414l-1.415 1.414 1.415 1.415a1 1 0 1 1-1.414 1.414L16 4.656l-1.414 1.415a1 1 0 0 1-1.414-1.414l1.414-1.415-1.414-1.414A1 1 0 1 1 14.586.414L16 1.828z" }));
|
|
9
|
+
});
|
|
10
|
+
export default DocumentcrossStrokeSrvIcon20;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useTheme } from "./ThemeProvider";
|
|
3
|
+
import getPathClassName from "./utils/getPathClassName";
|
|
4
|
+
const DocumentcrossStrokeSrvIcon24 = 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: "DocumentcrossStrokeSrvIcon24", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
|
|
7
|
+
React.createElement("path", { className: pathClassName, d: "M12 2a1 1 0 1 1 0 2H6a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-8.5a1 1 0 1 1 2 0V19a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V5a3 3 0 0 1 3-3z" }),
|
|
8
|
+
React.createElement("path", { className: pathClassName, d: "M14 16a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2zM10 12a1 1 0 1 1 0 2H8a1 1 0 1 1 0-2zM10 8a1 1 0 1 1 0 2H8a1 1 0 0 1 0-2zM19.414 2.414a1 1 0 0 1 1.414 1.414l-1.415 1.414 1.415 1.415a1 1 0 1 1-1.414 1.414L18 6.656l-1.414 1.415a1 1 0 0 1-1.414-1.414l1.414-1.415-1.414-1.414a1 1 0 1 1 1.414-1.414L18 3.828z" }));
|
|
9
|
+
});
|
|
10
|
+
export default DocumentcrossStrokeSrvIcon24;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useTheme } from "./ThemeProvider";
|
|
3
|
+
import getPathClassName from "./utils/getPathClassName";
|
|
4
|
+
const DocumentcrossStrokeSrvIcon32 = 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: "DocumentcrossStrokeSrvIcon32", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
|
|
7
|
+
React.createElement("path", { className: pathClassName, d: "M16 4a1 1 0 1 1 0 2h-6a1 1 0 0 0-1 1v17a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-9a1 1 0 1 1 2 0v9a3 3 0 0 1-3 3H10a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3z" }),
|
|
8
|
+
React.createElement("path", { className: pathClassName, d: "M20 20a1 1 0 1 1 0 2h-8a1 1 0 1 1 0-2zM15 16a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2zM15 12a1 1 0 1 1 0 2h-3a1 1 0 1 1 0-2zM26.121 4.621a1 1 0 0 1 1.414 1.414l-2.122 2.121 2.122 2.122a1 1 0 1 1-1.414 1.414L24 9.57l-2.121 2.122a1 1 0 0 1-1.414-1.414l2.12-2.122-2.12-2.12a1 1 0 1 1 1.414-1.415L24 6.742z" }));
|
|
9
|
+
});
|
|
10
|
+
export default DocumentcrossStrokeSrvIcon32;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useTheme } from "./ThemeProvider";
|
|
3
|
+
import getPathClassName from "./utils/getPathClassName";
|
|
4
|
+
const DownloadStrokeSrvIcon16 = 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: "DownloadStrokeSrvIcon16", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
|
|
7
|
+
React.createElement("path", { className: pathClassName, d: "M15 10a1 1 0 0 1 1 1v2a3 3 0 0 1-3 3H3a3 3 0 0 1-3-3v-2a1 1 0 1 1 2 0v2a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1v-2a1 1 0 0 1 1-1" }),
|
|
8
|
+
React.createElement("path", { className: pathClassName, d: "M8 0a1 1 0 0 1 1 1v7.586l2.793-2.793a1 1 0 1 1 1.414 1.414l-4.5 4.5a1 1 0 0 1-.242.179l-.032.014a1 1 0 0 1-.145.057l-.048.012q-.023.006-.045.01-.015.004-.03.005A1 1 0 0 1 8 12l-.103-.005q-.032-.004-.063-.01l-.031-.005-.034-.008-.062-.016a1 1 0 0 1-.414-.249l-4.5-4.5a1 1 0 1 1 1.414-1.414L7 8.586V1a1 1 0 0 1 1-1" }));
|
|
9
|
+
});
|
|
10
|
+
export default DownloadStrokeSrvIcon16;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useTheme } from "./ThemeProvider";
|
|
3
|
+
import getPathClassName from "./utils/getPathClassName";
|
|
4
|
+
const GigaassistaintOtherBrdIcon16 = 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: "GigaassistaintOtherBrdIcon16", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
|
|
7
|
+
React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M15.681 5.563a7.9 7.9 0 0 0-2.463-3.67c-.592-.456-1.352-.648-2.08-.68h-.424C8.74 1.317 6.867 2.245 5.3 3.42c.64.704 1.256 1.496 1.848 2.255 1.272-.903 2.623-1.735 4.047-2.39.456.87-1.016 2.302-1.624 2.806-1.383 1.12-2.951 2.216-4.775 2.36a3.1 3.1 0 0 1-.983-.096c-.848-.216-1.504-.92-1.776-1.728a2.7 2.7 0 0 1-.048-1.287c.144-.768.536-1.512 1.072-2.168C4.29 1.565 6.483.493 8.987.493c1.903 0 2.415.296 2.623.416.072.04.112.064.152.048C10.706.413 9.538.053 8.347.005h-.192a5 5 0 0 0-.576.008C3.332.23-.14 3.868.004 8.115c0 .04 0 .104.008.144v.088c0 .063.008.135.008.2 0 .015.008.08.016.095.12 2.128 1.288 3.967 3.52 4.303a9 9 0 0 0 1.591.032c2.848-.2 5.831-1.696 7.623-3.903.816-1.015 1.408-2.255 1.488-3.559.008-.088 0-.175.008-.263.903 1 1.535 2.31 1.663 3.646.136-1.12.088-2.247-.248-3.335M1.82 13.233a9.5 9.5 0 0 0 5.47 1.703c3.688 0 6.88-2.055 8.407-5.038A8.036 8.036 0 0 1 7.891 16a8 8 0 0 1-6.071-2.767", clipRule: "evenodd" }));
|
|
8
|
+
});
|
|
9
|
+
export default GigaassistaintOtherBrdIcon16;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useTheme, EIconsTheme } from "./ThemeProvider";
|
|
3
|
+
const NotenoughbonusesMrkIcon128 = 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: "NotenoughbonusesMrkIcon128", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
|
|
8
|
+
React.createElement("path", { fill: "url(#a_notenoughbonuses128)", d: "M39 21a5 5 0 0 0 0 10v6.445c0 .915-.626 1.702-1.49 2.005C32.04 41.373 28 45.924 28 52v41c0 7.841 6.047 14.001 14 14.001h44c7.953 0 14-6.16 14-14.001V52c0-6.076-4.04-10.627-9.51-12.55-.864-.303-1.49-1.09-1.49-2.005V31A5 5 0 0 0 89 21z" }),
|
|
9
|
+
React.createElement("path", { fill: "#fff", fillOpacity: ".3", d: "M85 71c0 11.046-8.954 20-20 20H48.995A3.994 3.994 0 0 1 45 87.003V71c0-11.046 8.954-20 20-20s20 8.954 20 20" }),
|
|
10
|
+
React.createElement("path", { fill: "#fff", fillRule: "evenodd", d: "M69 61a2 2 0 1 1 0 4h-9v3h6a7 7 0 1 1 0 14h-8a2 2 0 0 1-2-2V64a3 3 0 0 1 3-3zm-9 17h6a3 3 0 1 0 0-6h-6z", clipRule: "evenodd" }),
|
|
11
|
+
React.createElement("defs", null,
|
|
12
|
+
React.createElement("radialGradient", { id: "a_notenoughbonuses128", cx: "0", cy: "0", r: "1", gradientTransform: "matrix(0 -71 90.0076 0 64 92)", gradientUnits: "userSpaceOnUse" },
|
|
13
|
+
React.createElement("stop", { stopColor: "#50BEB8" }),
|
|
14
|
+
React.createElement("stop", { offset: ".861", stopColor: "#D6DEED" }))));
|
|
15
|
+
case EIconsTheme.DARK:
|
|
16
|
+
return React.createElement("svg", { width: "128", height: "128", fill: "none", viewBox: "0 0 128 128", name: "NotenoughbonusesMrkIcon128", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
|
|
17
|
+
React.createElement("path", { fill: "url(#a_notenoughbonuses128)", d: "M39 21a5 5 0 0 0 0 10v6.445c0 .915-.626 1.702-1.49 2.005C32.04 41.373 28 45.924 28 52v41c0 7.841 6.047 14.001 14 14.001h44c7.953 0 14-6.16 14-14.001V52c0-6.076-4.04-10.627-9.51-12.55-.864-.303-1.49-1.09-1.49-2.005V31A5 5 0 0 0 89 21z" }),
|
|
18
|
+
React.createElement("path", { fill: "#fff", fillOpacity: ".25", d: "M85 71c0 11.046-8.954 20-20 20H48.995A3.994 3.994 0 0 1 45 87.003V71c0-11.046 8.954-20 20-20s20 8.954 20 20" }),
|
|
19
|
+
React.createElement("path", { fill: "#fff", fillRule: "evenodd", d: "M69 61a2 2 0 1 1 0 4h-9v3h6a7 7 0 1 1 0 14h-8a2 2 0 0 1-2-2V64a3 3 0 0 1 3-3zm-9 17h6a3 3 0 1 0 0-6h-6z", clipRule: "evenodd" }),
|
|
20
|
+
React.createElement("defs", null,
|
|
21
|
+
React.createElement("radialGradient", { id: "a_notenoughbonuses128", cx: "0", cy: "0", r: "1", gradientTransform: "matrix(0 -71.5559 90.0076 0 64 92.22)", gradientUnits: "userSpaceOnUse" },
|
|
22
|
+
React.createElement("stop", { stopColor: "#50BEB8" }),
|
|
23
|
+
React.createElement("stop", { offset: ".861", stopColor: "#373C49" }))));
|
|
24
|
+
}
|
|
25
|
+
});
|
|
26
|
+
export default NotenoughbonusesMrkIcon128;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useTheme, EIconsTheme } from "./ThemeProvider";
|
|
3
|
+
const NotenoughbonusesMrkIcon96 = 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: "NotenoughbonusesMrkIcon96", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
|
|
8
|
+
React.createElement("path", { fill: "url(#a_notenoughbonuses96)", d: "M29.5 16a3.5 3.5 0 0 0-3.5 3.5v.5a3 3 0 0 0 3 3v4.833c0 .686-.47 1.275-1.115 1.51C23.817 30.82 21 34.442 21 38.998v31c0 5.881 5.035 10 11 10h33c5.965 0 10-4.119 10-10V39c0-4.556-2.817-8.18-6.885-9.657-.645-.234-1.115-.823-1.115-1.51V23a3 3 0 0 0 3-3v-.5A3.5 3.5 0 0 0 66.5 16z" }),
|
|
9
|
+
React.createElement("path", { fill: "#fff", fillOpacity: ".3", d: "M64 53c0 8.284-6.716 15-15 15H36.997A2.995 2.995 0 0 1 34 65.002V53c0-8.284 6.716-15 15-15s15 6.716 15 15" }),
|
|
10
|
+
React.createElement("path", { fill: "#fff", d: "M52 56a2 2 0 0 0-2-2h-4.5v4H50a2 2 0 0 0 2-2m3 0a5 5 0 0 1-5 5h-6a1.5 1.5 0 0 1-1.5-1.5V48.25A2.25 2.25 0 0 1 44.75 46H52a1.5 1.5 0 0 1 0 3h-6.5v2H50a5 5 0 0 1 5 5" }),
|
|
11
|
+
React.createElement("defs", null,
|
|
12
|
+
React.createElement("radialGradient", { id: "a_notenoughbonuses96", cx: "0", cy: "0", r: "1", gradientTransform: "matrix(0 -53.25 67.5057 0 48 69)", gradientUnits: "userSpaceOnUse" },
|
|
13
|
+
React.createElement("stop", { stopColor: "#50BEB8" }),
|
|
14
|
+
React.createElement("stop", { offset: ".861", stopColor: "#D6DEED" }))));
|
|
15
|
+
case EIconsTheme.DARK:
|
|
16
|
+
return React.createElement("svg", { width: "96", height: "96", fill: "none", viewBox: "0 0 96 96", name: "NotenoughbonusesMrkIcon96", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
|
|
17
|
+
React.createElement("path", { fill: "url(#a_notenoughbonuses96)", d: "M29.5 16a3.5 3.5 0 0 0-3.5 3.5v.5a3 3 0 0 0 3 3v4.833c0 .686-.47 1.275-1.115 1.51C23.817 30.82 21 34.442 21 38.998v31c0 5.881 5.035 10 11 10h33c5.965 0 10-4.119 10-10V39c0-4.556-2.817-8.18-6.885-9.657-.645-.234-1.115-.823-1.115-1.51V23a3 3 0 0 0 3-3v-.5A3.5 3.5 0 0 0 66.5 16z" }),
|
|
18
|
+
React.createElement("path", { fill: "#fff", fillOpacity: ".25", d: "M64 53c0 8.284-6.716 15-15 15H36.997A2.995 2.995 0 0 1 34 65.002V53c0-8.284 6.716-15 15-15s15 6.716 15 15" }),
|
|
19
|
+
React.createElement("path", { fill: "#fff", d: "M52 56a2 2 0 0 0-2-2h-4.5v4H50a2 2 0 0 0 2-2m3 0a5 5 0 0 1-5 5h-6a1.5 1.5 0 0 1-1.5-1.5V48.25A2.25 2.25 0 0 1 44.75 46H52a1.5 1.5 0 0 1 0 3h-6.5v2H50a5 5 0 0 1 5 5" }),
|
|
20
|
+
React.createElement("defs", null,
|
|
21
|
+
React.createElement("radialGradient", { id: "a_notenoughbonuses96", cx: "0", cy: "0", r: "1", gradientTransform: "matrix(0 -53.25 67.5057 0 48 69)", gradientUnits: "userSpaceOnUse" },
|
|
22
|
+
React.createElement("stop", { stopColor: "#50BEB8" }),
|
|
23
|
+
React.createElement("stop", { offset: ".861", stopColor: "#373C49" }))));
|
|
24
|
+
}
|
|
25
|
+
});
|
|
26
|
+
export default NotenoughbonusesMrkIcon96;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useTheme } from "./ThemeProvider";
|
|
3
|
+
import getPathClassName from "./utils/getPathClassName";
|
|
4
|
+
const PollStrokeSrvIcon20 = 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: "PollStrokeSrvIcon20", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
|
|
7
|
+
React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M3 11a3 3 0 1 1 0 6 3 3 0 0 1 0-6m0 2a1 1 0 1 0 0 2 1 1 0 0 0 0-2", clipRule: "evenodd" }),
|
|
8
|
+
React.createElement("path", { className: pathClassName, d: "M19 13a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2zM3 3a3 3 0 1 1 0 6 3 3 0 0 1 0-6M19 5a1 1 0 1 1 0 2H9a1 1 0 1 1 0-2z" }));
|
|
9
|
+
});
|
|
10
|
+
export default PollStrokeSrvIcon20;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useTheme } from "./ThemeProvider";
|
|
3
|
+
import getPathClassName from "./utils/getPathClassName";
|
|
4
|
+
const PollStrokeSrvIcon24 = 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: "PollStrokeSrvIcon24", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
|
|
7
|
+
React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M5 13a3 3 0 1 1 0 6 3 3 0 0 1 0-6m0 2a1 1 0 1 0 0 2 1 1 0 0 0 0-2", clipRule: "evenodd" }),
|
|
8
|
+
React.createElement("path", { className: pathClassName, d: "M21 15a1 1 0 1 1 0 2H11a1 1 0 1 1 0-2zM5 5a3 3 0 1 1 0 6 3 3 0 0 1 0-6M21 7a1 1 0 1 1 0 2H11a1 1 0 1 1 0-2z" }));
|
|
9
|
+
});
|
|
10
|
+
export default PollStrokeSrvIcon24;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useTheme } from "./ThemeProvider";
|
|
3
|
+
import getPathClassName from "./utils/getPathClassName";
|
|
4
|
+
const PollStrokeSrvIcon32 = 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: "PollStrokeSrvIcon32", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
|
|
7
|
+
React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M9 17a4 4 0 1 1 0 8 4 4 0 0 1 0-8m0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4", clipRule: "evenodd" }),
|
|
8
|
+
React.createElement("path", { className: pathClassName, d: "M26 20a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2zM9 7a4 4 0 1 1 0 8 4 4 0 0 1 0-8M26 10a1 1 0 1 1 0 2H16a1 1 0 1 1 0-2z" }));
|
|
9
|
+
});
|
|
10
|
+
export default PollStrokeSrvIcon32;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useTheme, EIconsTheme } from "./ThemeProvider";
|
|
3
|
+
const SalaryprojectMrkIcon128 = 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: "SalaryprojectMrkIcon128", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
|
|
8
|
+
React.createElement("path", { fill: "#43C4BD", d: "M110 95a8 8 0 0 1-8 8H26a8 8 0 0 1-8-8V39a8 8 0 0 1 8-8h76a8 8 0 0 1 8 8z" }),
|
|
9
|
+
React.createElement("path", { fill: "url(#a_salaryproject128)", d: "M110 95a8 8 0 0 1-8 8H26a8 8 0 0 1-8-8V39a8 8 0 0 1 8-8h76a8 8 0 0 1 8 8z" }),
|
|
10
|
+
React.createElement("path", { fill: "url(#b_salaryproject128)", d: "M110 95a8 8 0 0 1-8 8H26a8 8 0 0 1-8-8V39a8 8 0 0 1 8-8h76a8 8 0 0 1 8 8z" }),
|
|
11
|
+
React.createElement("path", { fill: "url(#c_salaryproject128)", d: "M110 95a8 8 0 0 1-8 8H26a8 8 0 0 1-8-8V39a8 8 0 0 1 8-8h76a8 8 0 0 1 8 8z" }),
|
|
12
|
+
React.createElement("path", { fill: "url(#d_salaryproject128)", d: "M110 95a8 8 0 0 1-8 8H26a8 8 0 0 1-8-8V39a8 8 0 0 1 8-8h76a8 8 0 0 1 8 8z" }),
|
|
13
|
+
React.createElement("path", { fill: "#fff", d: "M102 73a6 6 0 1 1-12 0 6 6 0 0 1 12 0" }),
|
|
14
|
+
React.createElement("path", { fill: "#21A19A", d: "M26 44h76l-3.925-14.393a8 8 0 0 0-9.71-5.643l-58.491 15.04A5.16 5.16 0 0 0 26 44" }),
|
|
15
|
+
React.createElement("defs", null,
|
|
16
|
+
React.createElement("linearGradient", { id: "a_salaryproject128", x1: "1.319", x2: "102.418", y1: "71.862", y2: "43.862", gradientUnits: "userSpaceOnUse" },
|
|
17
|
+
React.createElement("stop", { stopColor: "#97A4C1" }),
|
|
18
|
+
React.createElement("stop", { offset: ".376", stopColor: "#97A4C1", stopOpacity: ".435" }),
|
|
19
|
+
React.createElement("stop", { offset: "1", stopColor: "#D6DEED", stopOpacity: "0" })),
|
|
20
|
+
React.createElement("linearGradient", { id: "b_salaryproject128", x1: "36.703", x2: "57.429", y1: "34.362", y2: "81.862", gradientUnits: "userSpaceOnUse" },
|
|
21
|
+
React.createElement("stop", { stopColor: "#97A4C1", stopOpacity: ".122" }),
|
|
22
|
+
React.createElement("stop", { offset: ".543", stopColor: "#D6DEED", stopOpacity: "0" }),
|
|
23
|
+
React.createElement("stop", { offset: ".991", stopColor: "#D6DEED", stopOpacity: "0" })),
|
|
24
|
+
React.createElement("linearGradient", { id: "c_salaryproject128", x1: "104.44", x2: "84.22", y1: "97.862", y2: "37.862", gradientUnits: "userSpaceOnUse" },
|
|
25
|
+
React.createElement("stop", { stopColor: "#D6DEED" }),
|
|
26
|
+
React.createElement("stop", { offset: ".493", stopColor: "#D6DEED", stopOpacity: "0" }),
|
|
27
|
+
React.createElement("stop", { offset: "1", stopColor: "#D6DEED", stopOpacity: "0" })),
|
|
28
|
+
React.createElement("linearGradient", { id: "d_salaryproject128", x1: "102.418", x2: "57.934", y1: "50.362", y2: "71.362", gradientUnits: "userSpaceOnUse" },
|
|
29
|
+
React.createElement("stop", { stopColor: "#D6DEED" }),
|
|
30
|
+
React.createElement("stop", { offset: ".989", stopColor: "#EEF3FC", stopOpacity: "0" }))));
|
|
31
|
+
case EIconsTheme.DARK:
|
|
32
|
+
return React.createElement("svg", { width: "128", height: "128", fill: "none", viewBox: "0 0 128 128", name: "SalaryprojectMrkIcon128", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
|
|
33
|
+
React.createElement("path", { fill: "#43C4BD", d: "M110 95a8 8 0 0 1-8 8H26a8 8 0 0 1-8-8V39a8 8 0 0 1 8-8h76a8 8 0 0 1 8 8z" }),
|
|
34
|
+
React.createElement("path", { fill: "url(#a_salaryproject128)", d: "M110 95a8 8 0 0 1-8 8H26a8 8 0 0 1-8-8V39a8 8 0 0 1 8-8h76a8 8 0 0 1 8 8z" }),
|
|
35
|
+
React.createElement("path", { fill: "url(#b_salaryproject128)", d: "M110 95a8 8 0 0 1-8 8H26a8 8 0 0 1-8-8V39a8 8 0 0 1 8-8h76a8 8 0 0 1 8 8z" }),
|
|
36
|
+
React.createElement("path", { fill: "url(#c_salaryproject128)", d: "M110 95a8 8 0 0 1-8 8H26a8 8 0 0 1-8-8V39a8 8 0 0 1 8-8h76a8 8 0 0 1 8 8z" }),
|
|
37
|
+
React.createElement("path", { fill: "url(#d_salaryproject128)", d: "M110 95a8 8 0 0 1-8 8H26a8 8 0 0 1-8-8V39a8 8 0 0 1 8-8h76a8 8 0 0 1 8 8z" }),
|
|
38
|
+
React.createElement("path", { fill: "#fff", d: "M102 73a6 6 0 1 1-12 0 6 6 0 0 1 12 0" }),
|
|
39
|
+
React.createElement("path", { fill: "#21A19A", d: "M26 44h76l-3.925-14.393a8 8 0 0 0-9.71-5.643l-58.491 15.04A5.16 5.16 0 0 0 26 44" }),
|
|
40
|
+
React.createElement("defs", null,
|
|
41
|
+
React.createElement("linearGradient", { id: "a_salaryproject128", x1: "1.319", x2: "102.418", y1: "71.862", y2: "43.863", gradientUnits: "userSpaceOnUse" },
|
|
42
|
+
React.createElement("stop", { stopColor: "#373C49" }),
|
|
43
|
+
React.createElement("stop", { offset: ".376", stopColor: "#373C49", stopOpacity: ".549" }),
|
|
44
|
+
React.createElement("stop", { offset: "1", stopColor: "#373C49", stopOpacity: "0" })),
|
|
45
|
+
React.createElement("linearGradient", { id: "b_salaryproject128", x1: "36.703", x2: "57.429", y1: "34.362", y2: "81.862", gradientUnits: "userSpaceOnUse" },
|
|
46
|
+
React.createElement("stop", { stopColor: "#373C49", stopOpacity: ".902" }),
|
|
47
|
+
React.createElement("stop", { offset: ".991", stopColor: "#373C49", stopOpacity: "0" })),
|
|
48
|
+
React.createElement("linearGradient", { id: "c_salaryproject128", x1: "104.44", x2: "84.22", y1: "97.862", y2: "37.862", gradientUnits: "userSpaceOnUse" },
|
|
49
|
+
React.createElement("stop", { stopColor: "#373C49" }),
|
|
50
|
+
React.createElement("stop", { offset: ".493", stopColor: "#373C49", stopOpacity: "0" }),
|
|
51
|
+
React.createElement("stop", { offset: "1", stopColor: "#373C49", stopOpacity: "0" })),
|
|
52
|
+
React.createElement("linearGradient", { id: "d_salaryproject128", x1: "102.418", x2: "57.935", y1: "50.362", y2: "71.362", gradientUnits: "userSpaceOnUse" },
|
|
53
|
+
React.createElement("stop", { stopColor: "#373C49", stopOpacity: ".902" }),
|
|
54
|
+
React.createElement("stop", { offset: ".989", stopColor: "#373C49", stopOpacity: "0" }))));
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
export default SalaryprojectMrkIcon128;
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useTheme, EIconsTheme } from "./ThemeProvider";
|
|
3
|
+
const SalaryprojectMrkIcon96 = 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: "SalaryprojectMrkIcon96", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
|
|
8
|
+
React.createElement("path", { fill: "#43C4BD", d: "M82.5 71.25a6 6 0 0 1-6 6h-57a6 6 0 0 1-6-6v-42a6 6 0 0 1 6-6h57a6 6 0 0 1 6 6z" }),
|
|
9
|
+
React.createElement("path", { fill: "url(#a_salaryproject96)", d: "M82.5 71.25a6 6 0 0 1-6 6h-57a6 6 0 0 1-6-6v-42a6 6 0 0 1 6-6h57a6 6 0 0 1 6 6z" }),
|
|
10
|
+
React.createElement("path", { fill: "url(#b_salaryproject96)", d: "M82.5 71.25a6 6 0 0 1-6 6h-57a6 6 0 0 1-6-6v-42a6 6 0 0 1 6-6h57a6 6 0 0 1 6 6z" }),
|
|
11
|
+
React.createElement("path", { fill: "url(#c_salaryproject96)", d: "M82.5 71.25a6 6 0 0 1-6 6h-57a6 6 0 0 1-6-6v-42a6 6 0 0 1 6-6h57a6 6 0 0 1 6 6z" }),
|
|
12
|
+
React.createElement("path", { fill: "url(#d_salaryproject96)", d: "M82.5 71.25a6 6 0 0 1-6 6h-57a6 6 0 0 1-6-6v-42a6 6 0 0 1 6-6h57a6 6 0 0 1 6 6z" }),
|
|
13
|
+
React.createElement("path", { fill: "#fff", d: "M76.5 54.75a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0" }),
|
|
14
|
+
React.createElement("path", { fill: "#21A19A", d: "M19.5 33h57l-2.944-10.795a6 6 0 0 0-7.283-4.232l-43.867 11.28A3.87 3.87 0 0 0 19.5 33" }),
|
|
15
|
+
React.createElement("defs", null,
|
|
16
|
+
React.createElement("linearGradient", { id: "a_salaryproject96", x1: ".989", x2: "76.813", y1: "53.897", y2: "32.897", gradientUnits: "userSpaceOnUse" },
|
|
17
|
+
React.createElement("stop", { stopColor: "#97A4C1" }),
|
|
18
|
+
React.createElement("stop", { offset: ".376", stopColor: "#97A4C1", stopOpacity: ".435" }),
|
|
19
|
+
React.createElement("stop", { offset: "1", stopColor: "#D6DEED", stopOpacity: "0" })),
|
|
20
|
+
React.createElement("linearGradient", { id: "b_salaryproject96", x1: "27.527", x2: "43.071", y1: "25.772", y2: "61.397", gradientUnits: "userSpaceOnUse" },
|
|
21
|
+
React.createElement("stop", { stopColor: "#97A4C1", stopOpacity: ".122" }),
|
|
22
|
+
React.createElement("stop", { offset: ".543", stopColor: "#D6DEED", stopOpacity: "0" }),
|
|
23
|
+
React.createElement("stop", { offset: ".991", stopColor: "#D6DEED", stopOpacity: "0" })),
|
|
24
|
+
React.createElement("linearGradient", { id: "c_salaryproject96", x1: "78.33", x2: "63.165", y1: "73.397", y2: "28.397", gradientUnits: "userSpaceOnUse" },
|
|
25
|
+
React.createElement("stop", { stopColor: "#D6DEED" }),
|
|
26
|
+
React.createElement("stop", { offset: ".493", stopColor: "#D6DEED", stopOpacity: "0" }),
|
|
27
|
+
React.createElement("stop", { offset: "1", stopColor: "#D6DEED", stopOpacity: "0" })),
|
|
28
|
+
React.createElement("linearGradient", { id: "d_salaryproject96", x1: "76.813", x2: "43.451", y1: "37.772", y2: "53.522", gradientUnits: "userSpaceOnUse" },
|
|
29
|
+
React.createElement("stop", { stopColor: "#D6DEED" }),
|
|
30
|
+
React.createElement("stop", { offset: ".989", stopColor: "#EEF3FC", stopOpacity: "0" }))));
|
|
31
|
+
case EIconsTheme.DARK:
|
|
32
|
+
return React.createElement("svg", { width: "96", height: "96", fill: "none", viewBox: "0 0 96 96", name: "SalaryprojectMrkIcon96", focusable: "false", "aria-hidden": "true", ...props, ref: ref },
|
|
33
|
+
React.createElement("path", { fill: "#43C4BD", d: "M82.5 71.25a6 6 0 0 1-6 6h-57a6 6 0 0 1-6-6v-42a6 6 0 0 1 6-6h57a6 6 0 0 1 6 6z" }),
|
|
34
|
+
React.createElement("path", { fill: "url(#a_salaryproject96)", d: "M82.5 71.25a6 6 0 0 1-6 6h-57a6 6 0 0 1-6-6v-42a6 6 0 0 1 6-6h57a6 6 0 0 1 6 6z" }),
|
|
35
|
+
React.createElement("path", { fill: "url(#b_salaryproject96)", d: "M82.5 71.25a6 6 0 0 1-6 6h-57a6 6 0 0 1-6-6v-42a6 6 0 0 1 6-6h57a6 6 0 0 1 6 6z" }),
|
|
36
|
+
React.createElement("path", { fill: "url(#c_salaryproject96)", d: "M82.5 71.25a6 6 0 0 1-6 6h-57a6 6 0 0 1-6-6v-42a6 6 0 0 1 6-6h57a6 6 0 0 1 6 6z" }),
|
|
37
|
+
React.createElement("path", { fill: "url(#d_salaryproject96)", d: "M82.5 71.25a6 6 0 0 1-6 6h-57a6 6 0 0 1-6-6v-42a6 6 0 0 1 6-6h57a6 6 0 0 1 6 6z" }),
|
|
38
|
+
React.createElement("path", { fill: "#fff", d: "M76.5 54.75a4.5 4.5 0 1 1-9 0 4.5 4.5 0 0 1 9 0" }),
|
|
39
|
+
React.createElement("path", { fill: "#21A19A", d: "M19.5 33h57l-2.944-10.795a6 6 0 0 0-7.283-4.232l-43.867 11.28A3.87 3.87 0 0 0 19.5 33" }),
|
|
40
|
+
React.createElement("defs", null,
|
|
41
|
+
React.createElement("linearGradient", { id: "a_salaryproject96", x1: ".989", x2: "76.813", y1: "53.897", y2: "32.897", gradientUnits: "userSpaceOnUse" },
|
|
42
|
+
React.createElement("stop", { stopColor: "#373C49" }),
|
|
43
|
+
React.createElement("stop", { offset: ".376", stopColor: "#373C49", stopOpacity: ".549" }),
|
|
44
|
+
React.createElement("stop", { offset: "1", stopColor: "#373C49", stopOpacity: "0" })),
|
|
45
|
+
React.createElement("linearGradient", { id: "b_salaryproject96", x1: "27.527", x2: "43.071", y1: "25.772", y2: "61.397", gradientUnits: "userSpaceOnUse" },
|
|
46
|
+
React.createElement("stop", { stopColor: "#373C49", stopOpacity: ".902" }),
|
|
47
|
+
React.createElement("stop", { offset: ".991", stopColor: "#373C49", stopOpacity: "0" })),
|
|
48
|
+
React.createElement("linearGradient", { id: "c_salaryproject96", x1: "78.33", x2: "63.165", y1: "73.397", y2: "28.397", gradientUnits: "userSpaceOnUse" },
|
|
49
|
+
React.createElement("stop", { stopColor: "#373C49" }),
|
|
50
|
+
React.createElement("stop", { offset: ".493", stopColor: "#373C49", stopOpacity: "0" }),
|
|
51
|
+
React.createElement("stop", { offset: "1", stopColor: "#373C49", stopOpacity: "0" })),
|
|
52
|
+
React.createElement("linearGradient", { id: "d_salaryproject96", x1: "76.813", x2: "43.451", y1: "37.772", y2: "53.521", gradientUnits: "userSpaceOnUse" },
|
|
53
|
+
React.createElement("stop", { stopColor: "#373C49", stopOpacity: ".902" }),
|
|
54
|
+
React.createElement("stop", { offset: ".989", stopColor: "#373C49", stopOpacity: "0" }))));
|
|
55
|
+
}
|
|
56
|
+
});
|
|
57
|
+
export default SalaryprojectMrkIcon96;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { ISingleColorIconProps } from "./types";
|
|
3
|
+
declare const SberbusinessspasiboStrokePrdIcon16: React.ForwardRefExoticComponent<ISingleColorIconProps & React.RefAttributes<SVGSVGElement>>;
|
|
4
|
+
export default SberbusinessspasiboStrokePrdIcon16;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useTheme } from "./ThemeProvider";
|
|
3
|
+
import getPathClassName from "./utils/getPathClassName";
|
|
4
|
+
const SberbusinessspasiboStrokePrdIcon16 = 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: "SberbusinessspasiboStrokePrdIcon16", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
|
|
7
|
+
React.createElement("g", { className: pathClassName, fillRule: "evenodd", clipPath: "url(#a_sberbusinessspasibo16)", clipRule: "evenodd" },
|
|
8
|
+
React.createElement("path", { d: "M9.5 4a1 1 0 0 1 0 2h-3v.5h2.25a2.75 2.75 0 0 1 0 5.5H5.5a1 1 0 0 1-1-1V6a2 2 0 0 1 2-2zm-3 6h2.25a.75.75 0 0 0 0-1.5H6.5z" }),
|
|
9
|
+
React.createElement("path", { d: "M8 0a8 8 0 1 1 0 16H1a1 1 0 0 1-1-1V8a8 8 0 0 1 8-8m0 2a6 6 0 0 0-6 6v6h6A6 6 0 0 0 8 2" })),
|
|
10
|
+
React.createElement("defs", null,
|
|
11
|
+
React.createElement("clipPath", { id: "a_sberbusinessspasibo16" },
|
|
12
|
+
React.createElement("path", { className: pathClassName, d: "M0 0H16V16H0z" }))));
|
|
13
|
+
});
|
|
14
|
+
export default SberbusinessspasiboStrokePrdIcon16;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useTheme } from "./ThemeProvider";
|
|
3
|
+
import getPathClassName from "./utils/getPathClassName";
|
|
4
|
+
const TrustStrokePrdIcon20 = 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: "TrustStrokePrdIcon20", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
|
|
7
|
+
React.createElement("path", { className: pathClassName, d: "M17.796 13.29a1 1 0 0 1 1.408 1.42l-5 4.955a1 1 0 0 1-1.404.003l-2.5-2.454a1 1 0 0 1 1.4-1.428l1.796 1.764z" }),
|
|
8
|
+
React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M16.5 0a1 1 0 0 1 1 1c0 .587-.138 1.781-.325 2.969-.189 1.193-.449 2.513-.727 3.347a1 1 0 0 1-.806.674l-2.366.337.686 2.399a1 1 0 0 1-.149.855c-1.044 1.462-4.422 3.806-10.386 3.913l-1.71 1.76a1 1 0 1 1-1.434-1.393l1.753-1.805c.275-2.965.946-6.405 2.972-9.15C7.167 1.981 10.742 0 16.5 0m-1.08 2.026c-4.57.227-7.208 1.907-8.803 4.068-1.546 2.094-2.205 4.761-2.51 7.377 4.407-.23 6.867-1.804 7.783-2.715l-.852-2.982a1 1 0 0 1 .82-1.264l2.86-.41c.17-.668.342-1.555.482-2.444.095-.598.17-1.163.22-1.63", clipRule: "evenodd" }));
|
|
9
|
+
});
|
|
10
|
+
export default TrustStrokePrdIcon20;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useTheme } from "./ThemeProvider";
|
|
3
|
+
import getPathClassName from "./utils/getPathClassName";
|
|
4
|
+
const TrustStrokePrdIcon32 = 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: "TrustStrokePrdIcon32", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
|
|
7
|
+
React.createElement("path", { className: pathClassName, d: "M25.793 20.293a1 1 0 0 1 1.414 1.414l-6 6a1 1 0 0 1-1.414 0l-3.5-3.5a1 1 0 1 1 1.414-1.414l2.793 2.793z" }),
|
|
8
|
+
React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M23.02 4.002a1 1 0 0 1 1 1c0 .644-.112 2.011-.291 3.41-.178 1.389-.438 2.937-.761 3.906a1 1 0 0 1-.838.678l-3.223.357 1.05 2.797a1 1 0 0 1-.124.933c-1.179 1.65-4.998 4.316-11.917 4.414l-2.209 2.21a1 1 0 1 1-1.414-1.414l2.266-2.267c.313-3.418 1.054-7.348 3.35-10.47 2.435-3.311 6.495-5.554 13.11-5.554m-1.056 2.021c-5.452.223-8.574 2.175-10.444 4.718-1.821 2.476-2.556 5.641-2.897 8.736 5.28-.231 8.18-2.086 9.253-3.176l-1.293-3.447a1 1 0 0 1 .826-1.346l3.83-.426c.191-.782.368-1.849.505-2.924.101-.788.174-1.54.22-2.135", clipRule: "evenodd" }));
|
|
9
|
+
});
|
|
10
|
+
export default TrustStrokePrdIcon32;
|
package/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export { default as DigitalrubleOtherBrdIcon16 } from "./DigitalrubleOtherBrdIco
|
|
|
10
10
|
export { default as DigitalrubleOtherBrdIcon20 } from "./DigitalrubleOtherBrdIcon20";
|
|
11
11
|
export { default as DigitalrubleOtherBrdIcon24 } from "./DigitalrubleOtherBrdIcon24";
|
|
12
12
|
export { default as DigitalrubleOtherBrdIcon32 } from "./DigitalrubleOtherBrdIcon32";
|
|
13
|
+
export { default as GigaassistaintOtherBrdIcon16 } from "./GigaassistaintOtherBrdIcon16";
|
|
13
14
|
export { default as GigaassistaintOtherBrdIcon20 } from "./GigaassistaintOtherBrdIcon20";
|
|
14
15
|
export { default as GigaassistaintOtherBrdIcon24 } from "./GigaassistaintOtherBrdIcon24";
|
|
15
16
|
export { default as GigaassistaintOtherBrdIcon32 } from "./GigaassistaintOtherBrdIcon32";
|
|
@@ -69,6 +70,8 @@ export { default as MarkercStrokeMkrIcon32 } from "./MarkercStrokeMkrIcon32";
|
|
|
69
70
|
export { default as MarkerdStrokeMkrIcon32 } from "./MarkerdStrokeMkrIcon32";
|
|
70
71
|
export { default as RubleStrokeMkrIcon20 } from "./RubleStrokeMkrIcon20";
|
|
71
72
|
export { default as RubleStrokeMkrIcon32 } from "./RubleStrokeMkrIcon32";
|
|
73
|
+
export { default as AiMrkIcon128 } from "./AiMrkIcon128";
|
|
74
|
+
export { default as AiMrkIcon96 } from "./AiMrkIcon96";
|
|
72
75
|
export { default as ApisandboxMrkIcon128 } from "./ApisandboxMrkIcon128";
|
|
73
76
|
export { default as ApisandboxMrkIcon96 } from "./ApisandboxMrkIcon96";
|
|
74
77
|
export { default as BellMrkIcon128 } from "./BellMrkIcon128";
|
|
@@ -99,12 +102,16 @@ export { default as MpstatsMrkIcon128 } from "./MpstatsMrkIcon128";
|
|
|
99
102
|
export { default as MpstatsMrkIcon96 } from "./MpstatsMrkIcon96";
|
|
100
103
|
export { default as NodocumentsMrkIcon128 } from "./NodocumentsMrkIcon128";
|
|
101
104
|
export { default as NodocumentsMrkIcon96 } from "./NodocumentsMrkIcon96";
|
|
105
|
+
export { default as NotenoughbonusesMrkIcon128 } from "./NotenoughbonusesMrkIcon128";
|
|
106
|
+
export { default as NotenoughbonusesMrkIcon96 } from "./NotenoughbonusesMrkIcon96";
|
|
102
107
|
export { default as OnlinestoreMrkIcon128 } from "./OnlinestoreMrkIcon128";
|
|
103
108
|
export { default as OnlinestoreMrkIcon96 } from "./OnlinestoreMrkIcon96";
|
|
104
109
|
export { default as PaymentsMrkIcon128 } from "./PaymentsMrkIcon128";
|
|
105
110
|
export { default as PaymentsMrkIcon96 } from "./PaymentsMrkIcon96";
|
|
106
111
|
export { default as ProfileMrkIcon128 } from "./ProfileMrkIcon128";
|
|
107
112
|
export { default as ProfileMrkIcon96 } from "./ProfileMrkIcon96";
|
|
113
|
+
export { default as SalaryprojectMrkIcon128 } from "./SalaryprojectMrkIcon128";
|
|
114
|
+
export { default as SalaryprojectMrkIcon96 } from "./SalaryprojectMrkIcon96";
|
|
108
115
|
export { default as SberbusinessprimeMrkIcon128 } from "./SberbusinessprimeMrkIcon128";
|
|
109
116
|
export { default as SberbusinessprimeMrkIcon96 } from "./SberbusinessprimeMrkIcon96";
|
|
110
117
|
export { default as ScheduledstatementMrkIcon128 } from "./ScheduledstatementMrkIcon128";
|
|
@@ -201,6 +208,7 @@ export { default as BrokersStrokePrdIcon32 } from "./BrokersStrokePrdIcon32";
|
|
|
201
208
|
export { default as BusinessenvironmentStrokePrdIcon20 } from "./BusinessenvironmentStrokePrdIcon20";
|
|
202
209
|
export { default as BusinessenvironmentStrokePrdIcon32 } from "./BusinessenvironmentStrokePrdIcon32";
|
|
203
210
|
export { default as BusinessguideStrokePrdIcon20 } from "./BusinessguideStrokePrdIcon20";
|
|
211
|
+
export { default as BusinessguideStrokePrdIcon32 } from "./BusinessguideStrokePrdIcon32";
|
|
204
212
|
export { default as BusinessmissionStrokePrdIcon20 } from "./BusinessmissionStrokePrdIcon20";
|
|
205
213
|
export { default as BusinessmissionStrokePrdIcon32 } from "./BusinessmissionStrokePrdIcon32";
|
|
206
214
|
export { default as BusinesstravelStrokePrdIcon20 } from "./BusinesstravelStrokePrdIcon20";
|
|
@@ -519,6 +527,7 @@ export { default as SberbusinessbotStrokePrdIcon20 } from "./SberbusinessbotStro
|
|
|
519
527
|
export { default as SberbusinessbotStrokePrdIcon32 } from "./SberbusinessbotStrokePrdIcon32";
|
|
520
528
|
export { default as SberbusinessprimeStrokePrdIcon20 } from "./SberbusinessprimeStrokePrdIcon20";
|
|
521
529
|
export { default as SberbusinessprimeStrokePrdIcon32 } from "./SberbusinessprimeStrokePrdIcon32";
|
|
530
|
+
export { default as SberbusinessspasiboStrokePrdIcon16 } from "./SberbusinessspasiboStrokePrdIcon16";
|
|
522
531
|
export { default as SberbusinessspasiboStrokePrdIcon20 } from "./SberbusinessspasiboStrokePrdIcon20";
|
|
523
532
|
export { default as SberbusinessspasiboStrokePrdIcon32 } from "./SberbusinessspasiboStrokePrdIcon32";
|
|
524
533
|
export { default as SberbusinessspasibocashbackStrokePrdIcon32 } from "./SberbusinessspasibocashbackStrokePrdIcon32";
|
|
@@ -574,6 +583,8 @@ export { default as TeamhealthStrokePrdIcon20 } from "./TeamhealthStrokePrdIcon2
|
|
|
574
583
|
export { default as TeamhealthStrokePrdIcon32 } from "./TeamhealthStrokePrdIcon32";
|
|
575
584
|
export { default as TravellineStrokePrdIcon20 } from "./TravellineStrokePrdIcon20";
|
|
576
585
|
export { default as TravellineStrokePrdIcon32 } from "./TravellineStrokePrdIcon32";
|
|
586
|
+
export { default as TrustStrokePrdIcon20 } from "./TrustStrokePrdIcon20";
|
|
587
|
+
export { default as TrustStrokePrdIcon32 } from "./TrustStrokePrdIcon32";
|
|
577
588
|
export { default as TwogisStrokePrdIcon20 } from "./TwogisStrokePrdIcon20";
|
|
578
589
|
export { default as TwogisStrokePrdIcon32 } from "./TwogisStrokePrdIcon32";
|
|
579
590
|
export { default as UkassaStrokePrdIcon20 } from "./UkassaStrokePrdIcon20";
|
|
@@ -764,6 +775,9 @@ export { default as DislikeStrokeSrvIcon24 } from "./DislikeStrokeSrvIcon24";
|
|
|
764
775
|
export { default as DocumentStrokeSrvIcon20 } from "./DocumentStrokeSrvIcon20";
|
|
765
776
|
export { default as DocumentStrokeSrvIcon24 } from "./DocumentStrokeSrvIcon24";
|
|
766
777
|
export { default as DocumentStrokeSrvIcon32 } from "./DocumentStrokeSrvIcon32";
|
|
778
|
+
export { default as DocumentcrossStrokeSrvIcon20 } from "./DocumentcrossStrokeSrvIcon20";
|
|
779
|
+
export { default as DocumentcrossStrokeSrvIcon24 } from "./DocumentcrossStrokeSrvIcon24";
|
|
780
|
+
export { default as DocumentcrossStrokeSrvIcon32 } from "./DocumentcrossStrokeSrvIcon32";
|
|
767
781
|
export { default as DocumenteditStrokeSrvIcon20 } from "./DocumenteditStrokeSrvIcon20";
|
|
768
782
|
export { default as DocumenteditStrokeSrvIcon24 } from "./DocumenteditStrokeSrvIcon24";
|
|
769
783
|
export { default as DocumenteditStrokeSrvIcon32 } from "./DocumenteditStrokeSrvIcon32";
|
|
@@ -779,6 +793,7 @@ export { default as DotsverticalStrokeSrvIcon16 } from "./DotsverticalStrokeSrvI
|
|
|
779
793
|
export { default as DotsverticalStrokeSrvIcon20 } from "./DotsverticalStrokeSrvIcon20";
|
|
780
794
|
export { default as DotsverticalStrokeSrvIcon24 } from "./DotsverticalStrokeSrvIcon24";
|
|
781
795
|
export { default as DotsverticalStrokeSrvIcon32 } from "./DotsverticalStrokeSrvIcon32";
|
|
796
|
+
export { default as DownloadStrokeSrvIcon16 } from "./DownloadStrokeSrvIcon16";
|
|
782
797
|
export { default as DownloadStrokeSrvIcon20 } from "./DownloadStrokeSrvIcon20";
|
|
783
798
|
export { default as DownloadStrokeSrvIcon24 } from "./DownloadStrokeSrvIcon24";
|
|
784
799
|
export { default as DownloadStrokeSrvIcon32 } from "./DownloadStrokeSrvIcon32";
|
|
@@ -920,6 +935,9 @@ export { default as PluscircleFilledSrvIcon32 } from "./PluscircleFilledSrvIcon3
|
|
|
920
935
|
export { default as PluscircleStrokeSrvIcon20 } from "./PluscircleStrokeSrvIcon20";
|
|
921
936
|
export { default as PluscircleStrokeSrvIcon24 } from "./PluscircleStrokeSrvIcon24";
|
|
922
937
|
export { default as PluscircleStrokeSrvIcon32 } from "./PluscircleStrokeSrvIcon32";
|
|
938
|
+
export { default as PollStrokeSrvIcon20 } from "./PollStrokeSrvIcon20";
|
|
939
|
+
export { default as PollStrokeSrvIcon24 } from "./PollStrokeSrvIcon24";
|
|
940
|
+
export { default as PollStrokeSrvIcon32 } from "./PollStrokeSrvIcon32";
|
|
923
941
|
export { default as PrintStrokeSrvIcon16 } from "./PrintStrokeSrvIcon16";
|
|
924
942
|
export { default as PrintStrokeSrvIcon20 } from "./PrintStrokeSrvIcon20";
|
|
925
943
|
export { default as PrintStrokeSrvIcon24 } from "./PrintStrokeSrvIcon24";
|
package/index.js
CHANGED
|
@@ -9,6 +9,7 @@ export { default as DigitalrubleOtherBrdIcon16 } from "./DigitalrubleOtherBrdIco
|
|
|
9
9
|
export { default as DigitalrubleOtherBrdIcon20 } from "./DigitalrubleOtherBrdIcon20";
|
|
10
10
|
export { default as DigitalrubleOtherBrdIcon24 } from "./DigitalrubleOtherBrdIcon24";
|
|
11
11
|
export { default as DigitalrubleOtherBrdIcon32 } from "./DigitalrubleOtherBrdIcon32";
|
|
12
|
+
export { default as GigaassistaintOtherBrdIcon16 } from "./GigaassistaintOtherBrdIcon16";
|
|
12
13
|
export { default as GigaassistaintOtherBrdIcon20 } from "./GigaassistaintOtherBrdIcon20";
|
|
13
14
|
export { default as GigaassistaintOtherBrdIcon24 } from "./GigaassistaintOtherBrdIcon24";
|
|
14
15
|
export { default as GigaassistaintOtherBrdIcon32 } from "./GigaassistaintOtherBrdIcon32";
|
|
@@ -68,6 +69,8 @@ export { default as MarkercStrokeMkrIcon32 } from "./MarkercStrokeMkrIcon32";
|
|
|
68
69
|
export { default as MarkerdStrokeMkrIcon32 } from "./MarkerdStrokeMkrIcon32";
|
|
69
70
|
export { default as RubleStrokeMkrIcon20 } from "./RubleStrokeMkrIcon20";
|
|
70
71
|
export { default as RubleStrokeMkrIcon32 } from "./RubleStrokeMkrIcon32";
|
|
72
|
+
export { default as AiMrkIcon128 } from "./AiMrkIcon128";
|
|
73
|
+
export { default as AiMrkIcon96 } from "./AiMrkIcon96";
|
|
71
74
|
export { default as ApisandboxMrkIcon128 } from "./ApisandboxMrkIcon128";
|
|
72
75
|
export { default as ApisandboxMrkIcon96 } from "./ApisandboxMrkIcon96";
|
|
73
76
|
export { default as BellMrkIcon128 } from "./BellMrkIcon128";
|
|
@@ -98,12 +101,16 @@ export { default as MpstatsMrkIcon128 } from "./MpstatsMrkIcon128";
|
|
|
98
101
|
export { default as MpstatsMrkIcon96 } from "./MpstatsMrkIcon96";
|
|
99
102
|
export { default as NodocumentsMrkIcon128 } from "./NodocumentsMrkIcon128";
|
|
100
103
|
export { default as NodocumentsMrkIcon96 } from "./NodocumentsMrkIcon96";
|
|
104
|
+
export { default as NotenoughbonusesMrkIcon128 } from "./NotenoughbonusesMrkIcon128";
|
|
105
|
+
export { default as NotenoughbonusesMrkIcon96 } from "./NotenoughbonusesMrkIcon96";
|
|
101
106
|
export { default as OnlinestoreMrkIcon128 } from "./OnlinestoreMrkIcon128";
|
|
102
107
|
export { default as OnlinestoreMrkIcon96 } from "./OnlinestoreMrkIcon96";
|
|
103
108
|
export { default as PaymentsMrkIcon128 } from "./PaymentsMrkIcon128";
|
|
104
109
|
export { default as PaymentsMrkIcon96 } from "./PaymentsMrkIcon96";
|
|
105
110
|
export { default as ProfileMrkIcon128 } from "./ProfileMrkIcon128";
|
|
106
111
|
export { default as ProfileMrkIcon96 } from "./ProfileMrkIcon96";
|
|
112
|
+
export { default as SalaryprojectMrkIcon128 } from "./SalaryprojectMrkIcon128";
|
|
113
|
+
export { default as SalaryprojectMrkIcon96 } from "./SalaryprojectMrkIcon96";
|
|
107
114
|
export { default as SberbusinessprimeMrkIcon128 } from "./SberbusinessprimeMrkIcon128";
|
|
108
115
|
export { default as SberbusinessprimeMrkIcon96 } from "./SberbusinessprimeMrkIcon96";
|
|
109
116
|
export { default as ScheduledstatementMrkIcon128 } from "./ScheduledstatementMrkIcon128";
|
|
@@ -200,6 +207,7 @@ export { default as BrokersStrokePrdIcon32 } from "./BrokersStrokePrdIcon32";
|
|
|
200
207
|
export { default as BusinessenvironmentStrokePrdIcon20 } from "./BusinessenvironmentStrokePrdIcon20";
|
|
201
208
|
export { default as BusinessenvironmentStrokePrdIcon32 } from "./BusinessenvironmentStrokePrdIcon32";
|
|
202
209
|
export { default as BusinessguideStrokePrdIcon20 } from "./BusinessguideStrokePrdIcon20";
|
|
210
|
+
export { default as BusinessguideStrokePrdIcon32 } from "./BusinessguideStrokePrdIcon32";
|
|
203
211
|
export { default as BusinessmissionStrokePrdIcon20 } from "./BusinessmissionStrokePrdIcon20";
|
|
204
212
|
export { default as BusinessmissionStrokePrdIcon32 } from "./BusinessmissionStrokePrdIcon32";
|
|
205
213
|
export { default as BusinesstravelStrokePrdIcon20 } from "./BusinesstravelStrokePrdIcon20";
|
|
@@ -518,6 +526,7 @@ export { default as SberbusinessbotStrokePrdIcon20 } from "./SberbusinessbotStro
|
|
|
518
526
|
export { default as SberbusinessbotStrokePrdIcon32 } from "./SberbusinessbotStrokePrdIcon32";
|
|
519
527
|
export { default as SberbusinessprimeStrokePrdIcon20 } from "./SberbusinessprimeStrokePrdIcon20";
|
|
520
528
|
export { default as SberbusinessprimeStrokePrdIcon32 } from "./SberbusinessprimeStrokePrdIcon32";
|
|
529
|
+
export { default as SberbusinessspasiboStrokePrdIcon16 } from "./SberbusinessspasiboStrokePrdIcon16";
|
|
521
530
|
export { default as SberbusinessspasiboStrokePrdIcon20 } from "./SberbusinessspasiboStrokePrdIcon20";
|
|
522
531
|
export { default as SberbusinessspasiboStrokePrdIcon32 } from "./SberbusinessspasiboStrokePrdIcon32";
|
|
523
532
|
export { default as SberbusinessspasibocashbackStrokePrdIcon32 } from "./SberbusinessspasibocashbackStrokePrdIcon32";
|
|
@@ -573,6 +582,8 @@ export { default as TeamhealthStrokePrdIcon20 } from "./TeamhealthStrokePrdIcon2
|
|
|
573
582
|
export { default as TeamhealthStrokePrdIcon32 } from "./TeamhealthStrokePrdIcon32";
|
|
574
583
|
export { default as TravellineStrokePrdIcon20 } from "./TravellineStrokePrdIcon20";
|
|
575
584
|
export { default as TravellineStrokePrdIcon32 } from "./TravellineStrokePrdIcon32";
|
|
585
|
+
export { default as TrustStrokePrdIcon20 } from "./TrustStrokePrdIcon20";
|
|
586
|
+
export { default as TrustStrokePrdIcon32 } from "./TrustStrokePrdIcon32";
|
|
576
587
|
export { default as TwogisStrokePrdIcon20 } from "./TwogisStrokePrdIcon20";
|
|
577
588
|
export { default as TwogisStrokePrdIcon32 } from "./TwogisStrokePrdIcon32";
|
|
578
589
|
export { default as UkassaStrokePrdIcon20 } from "./UkassaStrokePrdIcon20";
|
|
@@ -763,6 +774,9 @@ export { default as DislikeStrokeSrvIcon24 } from "./DislikeStrokeSrvIcon24";
|
|
|
763
774
|
export { default as DocumentStrokeSrvIcon20 } from "./DocumentStrokeSrvIcon20";
|
|
764
775
|
export { default as DocumentStrokeSrvIcon24 } from "./DocumentStrokeSrvIcon24";
|
|
765
776
|
export { default as DocumentStrokeSrvIcon32 } from "./DocumentStrokeSrvIcon32";
|
|
777
|
+
export { default as DocumentcrossStrokeSrvIcon20 } from "./DocumentcrossStrokeSrvIcon20";
|
|
778
|
+
export { default as DocumentcrossStrokeSrvIcon24 } from "./DocumentcrossStrokeSrvIcon24";
|
|
779
|
+
export { default as DocumentcrossStrokeSrvIcon32 } from "./DocumentcrossStrokeSrvIcon32";
|
|
766
780
|
export { default as DocumenteditStrokeSrvIcon20 } from "./DocumenteditStrokeSrvIcon20";
|
|
767
781
|
export { default as DocumenteditStrokeSrvIcon24 } from "./DocumenteditStrokeSrvIcon24";
|
|
768
782
|
export { default as DocumenteditStrokeSrvIcon32 } from "./DocumenteditStrokeSrvIcon32";
|
|
@@ -778,6 +792,7 @@ export { default as DotsverticalStrokeSrvIcon16 } from "./DotsverticalStrokeSrvI
|
|
|
778
792
|
export { default as DotsverticalStrokeSrvIcon20 } from "./DotsverticalStrokeSrvIcon20";
|
|
779
793
|
export { default as DotsverticalStrokeSrvIcon24 } from "./DotsverticalStrokeSrvIcon24";
|
|
780
794
|
export { default as DotsverticalStrokeSrvIcon32 } from "./DotsverticalStrokeSrvIcon32";
|
|
795
|
+
export { default as DownloadStrokeSrvIcon16 } from "./DownloadStrokeSrvIcon16";
|
|
781
796
|
export { default as DownloadStrokeSrvIcon20 } from "./DownloadStrokeSrvIcon20";
|
|
782
797
|
export { default as DownloadStrokeSrvIcon24 } from "./DownloadStrokeSrvIcon24";
|
|
783
798
|
export { default as DownloadStrokeSrvIcon32 } from "./DownloadStrokeSrvIcon32";
|
|
@@ -919,6 +934,9 @@ export { default as PluscircleFilledSrvIcon32 } from "./PluscircleFilledSrvIcon3
|
|
|
919
934
|
export { default as PluscircleStrokeSrvIcon20 } from "./PluscircleStrokeSrvIcon20";
|
|
920
935
|
export { default as PluscircleStrokeSrvIcon24 } from "./PluscircleStrokeSrvIcon24";
|
|
921
936
|
export { default as PluscircleStrokeSrvIcon32 } from "./PluscircleStrokeSrvIcon32";
|
|
937
|
+
export { default as PollStrokeSrvIcon20 } from "./PollStrokeSrvIcon20";
|
|
938
|
+
export { default as PollStrokeSrvIcon24 } from "./PollStrokeSrvIcon24";
|
|
939
|
+
export { default as PollStrokeSrvIcon32 } from "./PollStrokeSrvIcon32";
|
|
922
940
|
export { default as PrintStrokeSrvIcon16 } from "./PrintStrokeSrvIcon16";
|
|
923
941
|
export { default as PrintStrokeSrvIcon20 } from "./PrintStrokeSrvIcon20";
|
|
924
942
|
export { default as PrintStrokeSrvIcon24 } from "./PrintStrokeSrvIcon24";
|
package/package.json
CHANGED
package/styles/icons.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.
|
|
1
|
+
._9sofhx { fill: #008985; } ._13cxf92 { fill: #19BDB0; } ._ahgjhg { fill: #D10032; } ._xki0tl { fill: #F80C45; } ._l20e2i { fill: #EF4C01; } ._p76rrs { fill: #FF7A17; } ._ae7uii { fill: #0E57CC; } ._13t80kz { fill: #1297FE; } ._iv3rdi { fill: #697591; } ._waw2t5 { fill: #95A3C1; } ._3njabd { fill: #1F1F22; fill-opacity: .45; } ._18myb6d { fill: #FFFFFF; fill-opacity: .35; } ._slzbzx { fill: #FFFFFF; fill-opacity: 1; } ._jwzm7c { fill: #FFFFFF; fill-opacity: 1; } ._iiw88i { fill: #FFB13B; } ._1wpyytj { fill: #FFB13B; } ._mdodrr { fill: #1F1F22; fill-opacity: 1; } ._1q795cm { fill: #FFFFFF; fill-opacity: 1; } ._l38k9r { fill: #1F1F22; fill-opacity: 1; } ._1bnbi03 { fill: #1F1F22; fill-opacity: .45; } ._qz13pk { fill: #FFFFFF; fill-opacity: .35; } @media (hover: hover) and (pointer: fine), only screen and (-ms-high-contrast:active), (-ms-high-contrast:none) { .hoverable:hover ._9sofhx { fill: #21A19A; } .hoverable:hover ._13cxf92 { fill: #4BD9CF; } .hoverable:hover ._ahgjhg { fill: #E60037; } .hoverable:hover ._xki0tl { fill: #FF5571; } .hoverable:hover ._l20e2i { fill: #EF4C01; } .hoverable:hover ._p76rrs { fill: #FF7A17; } .hoverable:hover ._ae7uii { fill: #0E57CC; } .hoverable:hover ._13t80kz { fill: #1297FE; } .hoverable:hover ._iv3rdi { fill: #697591; } .hoverable:hover ._waw2t5 { fill: #95A3C1; } .hoverable:hover ._3njabd { fill: #1F1F22; fill-opacity: 1; } .hoverable:hover ._18myb6d { fill: #FFFFFF; fill-opacity: 1; } .hoverable:hover ._slzbzx { fill: #FFFFFF; fill-opacity: 1; } .hoverable:hover ._jwzm7c { fill: #FFFFFF; fill-opacity: 1; } .hoverable:hover ._iiw88i { fill: #FFB13B; } .hoverable:hover ._1wpyytj { fill: #FFB13B; } .hoverable:hover ._mdodrr { fill: #1F1F22; fill-opacity: 1; } .hoverable:hover ._1q795cm { fill: #FFFFFF; fill-opacity: 1; } .hoverable:hover ._l38k9r { fill: #1F1F22; fill-opacity: 1; } .hoverable:hover ._1bnbi03 { fill: #1F1F22; fill-opacity: 1; } .hoverable:hover ._qz13pk { fill: #FFFFFF; fill-opacity: 1; } } .hoverable:active ._9sofhx, .hoverable.active ._9sofhx { fill: #007777; } .hoverable:active ._13cxf92, .hoverable.active ._13cxf92 { fill: #008985; } .hoverable:active ._ahgjhg, .hoverable.active ._ahgjhg { fill: #BD002C; } .hoverable:active ._xki0tl, .hoverable.active ._xki0tl { fill: #D10032; } .hoverable:active ._l20e2i, .hoverable.active ._l20e2i { fill: #D10032; } .hoverable:active ._p76rrs, .hoverable.active ._p76rrs { fill: #FF7A17; } .hoverable:active ._ae7uii, .hoverable.active ._ae7uii { fill: #0E57CC; } .hoverable:active ._13t80kz, .hoverable.active ._13t80kz { fill: #1297FE; } .hoverable:active ._iv3rdi, .hoverable.active ._iv3rdi { fill: #697591; } .hoverable:active ._waw2t5, .hoverable.active ._waw2t5 { fill: #95A3C1; } .hoverable:active ._3njabd, .hoverable.active ._3njabd { fill: #1F1F22; fill-opacity: 1; } .hoverable:active ._18myb6d, .hoverable.active ._18myb6d { fill: #FFFFFF; fill-opacity: 1; } .hoverable:active ._slzbzx, .hoverable.active ._slzbzx { fill: #FFFFFF; fill-opacity: 1; } .hoverable:active ._jwzm7c, .hoverable.active ._jwzm7c { fill: #FFFFFF; fill-opacity: 1; } .hoverable:active ._iiw88i, .hoverable.active ._iiw88i { fill: #FFB13B; } .hoverable:active ._1wpyytj, .hoverable.active ._1wpyytj { fill: #FFB13B; } .hoverable:active ._mdodrr, .hoverable.active ._mdodrr { fill: #008985; } .hoverable:active ._1q795cm, .hoverable.active ._1q795cm { fill: #19BDB0; } .hoverable:active ._l38k9r, .hoverable.active ._l38k9r { fill: #1F1F22; fill-opacity: 1; } .hoverable:active ._1bnbi03, .hoverable.active ._1bnbi03 { fill: #008985; } .hoverable:active ._qz13pk, .hoverable.active ._qz13pk { fill: #19BDB0; } .hoverable:disabled ._9sofhx, .hoverable.disabled ._9sofhx { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._13cxf92, .hoverable.disabled ._13cxf92 { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._ahgjhg, .hoverable.disabled ._ahgjhg { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._xki0tl, .hoverable.disabled ._xki0tl { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._l20e2i, .hoverable.disabled ._l20e2i { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._p76rrs, .hoverable.disabled ._p76rrs { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._ae7uii, .hoverable.disabled ._ae7uii { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._13t80kz, .hoverable.disabled ._13t80kz { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._iv3rdi, .hoverable.disabled ._iv3rdi { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._waw2t5, .hoverable.disabled ._waw2t5 { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._3njabd, .hoverable.disabled ._3njabd { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._18myb6d, .hoverable.disabled ._18myb6d { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._slzbzx, .hoverable.disabled ._slzbzx { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._jwzm7c, .hoverable.disabled ._jwzm7c { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._iiw88i, .hoverable.disabled ._iiw88i { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._1wpyytj, .hoverable.disabled ._1wpyytj { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._mdodrr, .hoverable.disabled ._mdodrr { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._1q795cm, .hoverable.disabled ._1q795cm { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._l38k9r, .hoverable.disabled ._l38k9r { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._1bnbi03, .hoverable.disabled ._1bnbi03 { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._qz13pk, .hoverable.disabled ._qz13pk { fill: #FFFFFF; fill-opacity: .15; }
|
|
@@ -1,52 +1,52 @@
|
|
|
1
1
|
import { EIconsTheme } from "../ThemeProvider";
|
|
2
2
|
const themeToClassNamePalettes = [
|
|
3
3
|
{
|
|
4
|
-
[EIconsTheme.LIGHT]: "
|
|
5
|
-
[EIconsTheme.DARK]: "
|
|
4
|
+
[EIconsTheme.LIGHT]: "_9sofhx",
|
|
5
|
+
[EIconsTheme.DARK]: "_13cxf92",
|
|
6
6
|
},
|
|
7
7
|
{
|
|
8
|
-
[EIconsTheme.LIGHT]: "
|
|
9
|
-
[EIconsTheme.DARK]: "
|
|
8
|
+
[EIconsTheme.LIGHT]: "_ahgjhg",
|
|
9
|
+
[EIconsTheme.DARK]: "_xki0tl",
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
|
-
[EIconsTheme.LIGHT]: "
|
|
13
|
-
[EIconsTheme.DARK]: "
|
|
12
|
+
[EIconsTheme.LIGHT]: "_l20e2i",
|
|
13
|
+
[EIconsTheme.DARK]: "_p76rrs",
|
|
14
14
|
},
|
|
15
15
|
{
|
|
16
|
-
[EIconsTheme.LIGHT]: "
|
|
17
|
-
[EIconsTheme.DARK]: "
|
|
16
|
+
[EIconsTheme.LIGHT]: "_ae7uii",
|
|
17
|
+
[EIconsTheme.DARK]: "_13t80kz",
|
|
18
18
|
},
|
|
19
19
|
{
|
|
20
|
-
[EIconsTheme.LIGHT]: "
|
|
21
|
-
[EIconsTheme.DARK]: "
|
|
20
|
+
[EIconsTheme.LIGHT]: "_iv3rdi",
|
|
21
|
+
[EIconsTheme.DARK]: "_waw2t5",
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
|
-
[EIconsTheme.LIGHT]: "
|
|
25
|
-
[EIconsTheme.DARK]: "
|
|
24
|
+
[EIconsTheme.LIGHT]: "_3njabd",
|
|
25
|
+
[EIconsTheme.DARK]: "_18myb6d",
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
|
-
[EIconsTheme.LIGHT]: "
|
|
29
|
-
[EIconsTheme.DARK]: "
|
|
28
|
+
[EIconsTheme.LIGHT]: "_18myb6d",
|
|
29
|
+
[EIconsTheme.DARK]: "_3njabd",
|
|
30
30
|
},
|
|
31
31
|
{
|
|
32
|
-
[EIconsTheme.LIGHT]: "
|
|
33
|
-
[EIconsTheme.DARK]: "
|
|
32
|
+
[EIconsTheme.LIGHT]: "_slzbzx",
|
|
33
|
+
[EIconsTheme.DARK]: "_jwzm7c",
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
|
-
[EIconsTheme.LIGHT]: "
|
|
37
|
-
[EIconsTheme.DARK]: "
|
|
36
|
+
[EIconsTheme.LIGHT]: "_iiw88i",
|
|
37
|
+
[EIconsTheme.DARK]: "_1wpyytj",
|
|
38
38
|
},
|
|
39
39
|
{
|
|
40
|
-
[EIconsTheme.LIGHT]: "
|
|
41
|
-
[EIconsTheme.DARK]: "
|
|
40
|
+
[EIconsTheme.LIGHT]: "_mdodrr",
|
|
41
|
+
[EIconsTheme.DARK]: "_1q795cm",
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
|
-
[EIconsTheme.LIGHT]: "
|
|
45
|
-
[EIconsTheme.DARK]: "
|
|
44
|
+
[EIconsTheme.LIGHT]: "_slzbzx",
|
|
45
|
+
[EIconsTheme.DARK]: "_l38k9r",
|
|
46
46
|
},
|
|
47
47
|
{
|
|
48
|
-
[EIconsTheme.LIGHT]: "
|
|
49
|
-
[EIconsTheme.DARK]: "
|
|
48
|
+
[EIconsTheme.LIGHT]: "_1bnbi03",
|
|
49
|
+
[EIconsTheme.DARK]: "_qz13pk",
|
|
50
50
|
},
|
|
51
51
|
];
|
|
52
52
|
const getPathClassName = (paletteIndex, theme) => themeToClassNamePalettes[paletteIndex][theme];
|