@sberbusiness/icons-next 1.28.0 → 1.29.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/GearsStrokeSrvIcon32.d.ts +4 -0
- package/GearsStrokeSrvIcon32.js +12 -0
- package/StaffStrokeSrvIcon32.d.ts +4 -0
- package/StaffStrokeSrvIcon32.js +13 -0
- package/index.d.ts +2 -0
- package/index.js +2 -0
- package/package.json +1 -1
- package/styles/icons.css +1 -1
- package/utils/getPathClassName.js +24 -24
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useTheme } from "./ThemeProvider";
|
|
3
|
+
import getPathClassName from "./utils/getPathClassName";
|
|
4
|
+
const GearsStrokeSrvIcon32 = 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: "GearsStrokeSrvIcon32", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
|
|
7
|
+
React.createElement("path", { className: pathClassName, d: "M22.175 19a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3" }),
|
|
8
|
+
React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M21.223 13.687a1.5 1.5 0 0 1 1.592-.71l1.728.35a1.5 1.5 0 0 1 1.2 1.412l.06 1.575 1.618-.072h.118a1.5 1.5 0 0 1 1.288.824l.049.108.696 1.705a1.5 1.5 0 0 1-.561 1.817l-1.381.914.871 1.317a1.5 1.5 0 0 1-.129 1.82l-1.258 1.422a1.5 1.5 0 0 1-1.797.347l-1.453-.73-.675 1.414a1.5 1.5 0 0 1-1.652.823l-1.712-.348a1.5 1.5 0 0 1-1.199-1.402l-.071-1.587-1.623.072a1.5 1.5 0 0 1-1.456-.933l-.696-1.705a1.5 1.5 0 0 1 .562-1.817l1.379-.913-.913-1.38a1.5 1.5 0 0 1 .194-1.892l1.306-1.298.087-.08a1.5 1.5 0 0 1 1.508-.256l.109.047 1.467.7.684-1.432zm1.06 2.407a2 2 0 0 1-2.667.942l-1.15-.549-.765.76.688 1.04a2 2 0 0 1-.564 2.77l-1.039.687.408 1 1.273-.056a2 2 0 0 1 2.086 1.91l.053 1.195.947.192.507-1.061a2 2 0 0 1 2.703-.925l1.108.556.75-.846-.66-.996a2 2 0 0 1 .565-2.77l1.04-.69-.409-.998-1.265.056a2 2 0 0 1-2.088-1.92l-.045-1.182-.96-.195z", clipRule: "evenodd" }),
|
|
9
|
+
React.createElement("path", { className: pathClassName, d: "M14.594 2a1 1 0 0 1 .872.512l.065.14.647 1.742 1.598-.791a1 1 0 0 1 1.146.183l2.273 2.24a1 1 0 0 1 .2 1.146l-.81 1.68.336.116a1 1 0 1 1-.647 1.891l-.335-.114a2 2 0 0 1-1.156-2.76l.5-1.037-1.257-1.238-.96.477a2 2 0 0 1-2.762-1.097L13.898 4h-1.796l-.406 1.09a2 2 0 0 1-2.761 1.097l-.961-.477-1.257 1.238.499 1.036a2 2 0 0 1-1.154 2.761L5 11.107v1.758l1.025.359a2 2 0 0 1 1.165 2.71l-.488 1.08 1.263 1.254 1.021-.493a2 2 0 0 1 2.751 1.124l.4 1.11A1 1 0 0 1 12 22h-.57a1 1 0 0 1-.94-.661l-.635-1.762-1.657.8a1 1 0 0 1-1.138-.191l-2.258-2.24a1 1 0 0 1-.207-1.123l.772-1.71-1.696-.592A1 1 0 0 1 3 13.576v-3.182a1 1 0 0 1 .677-.947l1.737-.594-.81-1.681a1 1 0 0 1 .2-1.147l2.274-2.239a1 1 0 0 1 1.146-.183l1.598.79.647-1.742.065-.14A1 1 0 0 1 11.406 2z" }),
|
|
10
|
+
React.createElement("path", { className: pathClassName, d: "M9.076 11.242a4 4 0 0 1 7.713-.473 1 1 0 1 1-1.895.637A2 2 0 1 0 12.598 14a1 1 0 1 1-.4 1.96 4 4 0 0 1-2.655-1.901 4 4 0 0 1-.467-2.817" }));
|
|
11
|
+
});
|
|
12
|
+
export default GearsStrokeSrvIcon32;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { useTheme } from "./ThemeProvider";
|
|
3
|
+
import getPathClassName from "./utils/getPathClassName";
|
|
4
|
+
const StaffStrokeSrvIcon32 = 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: "StaffStrokeSrvIcon32", focusable: "false", "aria-hidden": "true", ...restProps, ref: ref },
|
|
7
|
+
React.createElement("path", { className: pathClassName, d: "M18 21a1 1 0 0 1 0 2h-3a1 1 0 0 1 0-2z" }),
|
|
8
|
+
React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M17.731 16.674c.617-.43 1.506-.555 2.241.057h.001C21.873 18.32 23 20.523 23 22.984c0 .323.012.987-.161 1.568-.091.304-.256.67-.574.967a1.82 1.82 0 0 1-1.267.482H7.002c-.487 0-.927-.164-1.268-.482a2.14 2.14 0 0 1-.573-.967C4.987 23.971 5 23.306 5 22.983c0-2.46 1.126-4.663 3.026-6.251l.001-.001c.735-.612 1.624-.487 2.241-.057l.12.091.002.001C11.304 17.51 12.714 18 14 18s2.696-.49 3.61-1.234h.001zm1.076 1.693C17.516 19.39 15.686 20 14 20s-3.517-.61-4.808-1.633C7.777 19.6 7 21.217 7 22.983c0 .19 0 .374.011.558q.019.28.066.438l.008.02h13.83l.008-.02q.046-.158.065-.437c.012-.185.012-.369.012-.56 0-1.764-.777-3.382-2.193-4.615", clipRule: "evenodd" }),
|
|
9
|
+
React.createElement("path", { className: pathClassName, d: "M23.281 17.073a1 1 0 0 1 1.414-.024c1.625 1.57 2.555 3.695 2.555 5.935 0 .499-.049 1.007-.144 1.508a1 1 0 0 1-1.965-.372c.073-.382.109-.765.109-1.136 0-1.678-.696-3.29-1.946-4.497a1 1 0 0 1-.023-1.414" }),
|
|
10
|
+
React.createElement("path", { className: pathClassName, fillRule: "evenodd", d: "M14 6a5 5 0 1 1 0 10 5 5 0 0 1 0-10m0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6", clipRule: "evenodd" }),
|
|
11
|
+
React.createElement("path", { className: pathClassName, d: "M20.641 6.01C23.023 6.35 25 8.5 25 11c0 .994-.315 1.922-.77 2.671-.451.74-1.08 1.372-1.783 1.723a1 1 0 0 1-.895-1.789c.297-.149.669-.481.968-.974.294-.483.48-1.056.48-1.632 0-1.466-1.207-2.804-2.642-3.01a1 1 0 0 1 .283-1.98" }));
|
|
12
|
+
});
|
|
13
|
+
export default StaffStrokeSrvIcon32;
|
package/index.d.ts
CHANGED
|
@@ -813,6 +813,7 @@ export { default as FeedbackbankStrokeSrvIcon24 } from "./FeedbackbankStrokeSrvI
|
|
|
813
813
|
export { default as FeedbackbankStrokeSrvIcon32 } from "./FeedbackbankStrokeSrvIcon32";
|
|
814
814
|
export { default as GasstationStrokeSrvIcon20 } from "./GasstationStrokeSrvIcon20";
|
|
815
815
|
export { default as GasstationStrokeSrvIcon32 } from "./GasstationStrokeSrvIcon32";
|
|
816
|
+
export { default as GearsStrokeSrvIcon32 } from "./GearsStrokeSrvIcon32";
|
|
816
817
|
export { default as GiftStrokeSrvIcon20 } from "./GiftStrokeSrvIcon20";
|
|
817
818
|
export { default as GiftStrokeSrvIcon32 } from "./GiftStrokeSrvIcon32";
|
|
818
819
|
export { default as HamburgerStrokeSrvIcon20 } from "./HamburgerStrokeSrvIcon20";
|
|
@@ -1016,6 +1017,7 @@ export { default as SpeakerStrokeSrvIcon20 } from "./SpeakerStrokeSrvIcon20";
|
|
|
1016
1017
|
export { default as SpeakerStrokeSrvIcon32 } from "./SpeakerStrokeSrvIcon32";
|
|
1017
1018
|
export { default as SpecialequipmentStrokeSrvIcon20 } from "./SpecialequipmentStrokeSrvIcon20";
|
|
1018
1019
|
export { default as SpecialequipmentStrokeSrvIcon32 } from "./SpecialequipmentStrokeSrvIcon32";
|
|
1020
|
+
export { default as StaffStrokeSrvIcon32 } from "./StaffStrokeSrvIcon32";
|
|
1019
1021
|
export { default as StarFilledSrvIcon20 } from "./StarFilledSrvIcon20";
|
|
1020
1022
|
export { default as StarFilledSrvIcon24 } from "./StarFilledSrvIcon24";
|
|
1021
1023
|
export { default as StarFilledSrvIcon32 } from "./StarFilledSrvIcon32";
|
package/index.js
CHANGED
|
@@ -812,6 +812,7 @@ export { default as FeedbackbankStrokeSrvIcon24 } from "./FeedbackbankStrokeSrvI
|
|
|
812
812
|
export { default as FeedbackbankStrokeSrvIcon32 } from "./FeedbackbankStrokeSrvIcon32";
|
|
813
813
|
export { default as GasstationStrokeSrvIcon20 } from "./GasstationStrokeSrvIcon20";
|
|
814
814
|
export { default as GasstationStrokeSrvIcon32 } from "./GasstationStrokeSrvIcon32";
|
|
815
|
+
export { default as GearsStrokeSrvIcon32 } from "./GearsStrokeSrvIcon32";
|
|
815
816
|
export { default as GiftStrokeSrvIcon20 } from "./GiftStrokeSrvIcon20";
|
|
816
817
|
export { default as GiftStrokeSrvIcon32 } from "./GiftStrokeSrvIcon32";
|
|
817
818
|
export { default as HamburgerStrokeSrvIcon20 } from "./HamburgerStrokeSrvIcon20";
|
|
@@ -1015,6 +1016,7 @@ export { default as SpeakerStrokeSrvIcon20 } from "./SpeakerStrokeSrvIcon20";
|
|
|
1015
1016
|
export { default as SpeakerStrokeSrvIcon32 } from "./SpeakerStrokeSrvIcon32";
|
|
1016
1017
|
export { default as SpecialequipmentStrokeSrvIcon20 } from "./SpecialequipmentStrokeSrvIcon20";
|
|
1017
1018
|
export { default as SpecialequipmentStrokeSrvIcon32 } from "./SpecialequipmentStrokeSrvIcon32";
|
|
1019
|
+
export { default as StaffStrokeSrvIcon32 } from "./StaffStrokeSrvIcon32";
|
|
1018
1020
|
export { default as StarFilledSrvIcon20 } from "./StarFilledSrvIcon20";
|
|
1019
1021
|
export { default as StarFilledSrvIcon24 } from "./StarFilledSrvIcon24";
|
|
1020
1022
|
export { default as StarFilledSrvIcon32 } from "./StarFilledSrvIcon32";
|
package/package.json
CHANGED
package/styles/icons.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.
|
|
1
|
+
._9l3sxu { fill: #008985; } ._12vd6ip { fill: #19BDB0; } ._a01tw3 { fill: #D10032; } ._xn382m { fill: #F80C45; } ._kkfqbx { fill: #EF4C01; } ._p9m04v { fill: #FF7A17; } ._a6n4st { fill: #0E57CC; } ._13lmy84 { fill: #1297FE; } ._idpie9 { fill: #697591; } ._wnazny { fill: #95A3C1; } ._3kz2ku { fill: #1F1F22; fill-opacity: .45; } ._18piiw2 { fill: #FFFFFF; fill-opacity: .35; } ._sjk18q { fill: #FFFFFF; fill-opacity: 1; } ._jffq5b { fill: #FFFFFF; fill-opacity: 1; } ._ilb345 { fill: #FFB13B; } ._1wdkfe8 { fill: #FFB13B; } ._ml9474 { fill: #1F1F22; fill-opacity: 1; } ._1qotgf5 { fill: #FFFFFF; fill-opacity: 1; } ._lkmgmg { fill: #1F1F22; fill-opacity: 1; } ._1bawo9g { fill: #1F1F22; fill-opacity: .45; } ._qwfxa7 { fill: #FFFFFF; fill-opacity: .35; } @media (hover: hover) and (pointer: fine), only screen and (-ms-high-contrast:active), (-ms-high-contrast:none) { .hoverable:hover ._9l3sxu { fill: #21A19A; } .hoverable:hover ._12vd6ip { fill: #4BD9CF; } .hoverable:hover ._a01tw3 { fill: #E60037; } .hoverable:hover ._xn382m { fill: #FF5571; } .hoverable:hover ._kkfqbx { fill: #EF4C01; } .hoverable:hover ._p9m04v { fill: #FF7A17; } .hoverable:hover ._a6n4st { fill: #0E57CC; } .hoverable:hover ._13lmy84 { fill: #1297FE; } .hoverable:hover ._idpie9 { fill: #697591; } .hoverable:hover ._wnazny { fill: #95A3C1; } .hoverable:hover ._3kz2ku { fill: #1F1F22; fill-opacity: 1; } .hoverable:hover ._18piiw2 { fill: #FFFFFF; fill-opacity: 1; } .hoverable:hover ._sjk18q { fill: #FFFFFF; fill-opacity: 1; } .hoverable:hover ._jffq5b { fill: #FFFFFF; fill-opacity: 1; } .hoverable:hover ._ilb345 { fill: #FFB13B; } .hoverable:hover ._1wdkfe8 { fill: #FFB13B; } .hoverable:hover ._ml9474 { fill: #1F1F22; fill-opacity: 1; } .hoverable:hover ._1qotgf5 { fill: #FFFFFF; fill-opacity: 1; } .hoverable:hover ._lkmgmg { fill: #1F1F22; fill-opacity: 1; } .hoverable:hover ._1bawo9g { fill: #1F1F22; fill-opacity: 1; } .hoverable:hover ._qwfxa7 { fill: #FFFFFF; fill-opacity: 1; } } .hoverable:active ._9l3sxu, .hoverable.active ._9l3sxu { fill: #007777; } .hoverable:active ._12vd6ip, .hoverable.active ._12vd6ip { fill: #008985; } .hoverable:active ._a01tw3, .hoverable.active ._a01tw3 { fill: #BD002C; } .hoverable:active ._xn382m, .hoverable.active ._xn382m { fill: #D10032; } .hoverable:active ._kkfqbx, .hoverable.active ._kkfqbx { fill: #D10032; } .hoverable:active ._p9m04v, .hoverable.active ._p9m04v { fill: #FF7A17; } .hoverable:active ._a6n4st, .hoverable.active ._a6n4st { fill: #0E57CC; } .hoverable:active ._13lmy84, .hoverable.active ._13lmy84 { fill: #1297FE; } .hoverable:active ._idpie9, .hoverable.active ._idpie9 { fill: #697591; } .hoverable:active ._wnazny, .hoverable.active ._wnazny { fill: #95A3C1; } .hoverable:active ._3kz2ku, .hoverable.active ._3kz2ku { fill: #1F1F22; fill-opacity: 1; } .hoverable:active ._18piiw2, .hoverable.active ._18piiw2 { fill: #FFFFFF; fill-opacity: 1; } .hoverable:active ._sjk18q, .hoverable.active ._sjk18q { fill: #FFFFFF; fill-opacity: 1; } .hoverable:active ._jffq5b, .hoverable.active ._jffq5b { fill: #FFFFFF; fill-opacity: 1; } .hoverable:active ._ilb345, .hoverable.active ._ilb345 { fill: #FFB13B; } .hoverable:active ._1wdkfe8, .hoverable.active ._1wdkfe8 { fill: #FFB13B; } .hoverable:active ._ml9474, .hoverable.active ._ml9474 { fill: #008985; } .hoverable:active ._1qotgf5, .hoverable.active ._1qotgf5 { fill: #19BDB0; } .hoverable:active ._lkmgmg, .hoverable.active ._lkmgmg { fill: #1F1F22; fill-opacity: 1; } .hoverable:active ._1bawo9g, .hoverable.active ._1bawo9g { fill: #008985; } .hoverable:active ._qwfxa7, .hoverable.active ._qwfxa7 { fill: #19BDB0; } .hoverable:disabled ._9l3sxu, .hoverable.disabled ._9l3sxu { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._12vd6ip, .hoverable.disabled ._12vd6ip { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._a01tw3, .hoverable.disabled ._a01tw3 { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._xn382m, .hoverable.disabled ._xn382m { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._kkfqbx, .hoverable.disabled ._kkfqbx { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._p9m04v, .hoverable.disabled ._p9m04v { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._a6n4st, .hoverable.disabled ._a6n4st { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._13lmy84, .hoverable.disabled ._13lmy84 { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._idpie9, .hoverable.disabled ._idpie9 { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._wnazny, .hoverable.disabled ._wnazny { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._3kz2ku, .hoverable.disabled ._3kz2ku { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._18piiw2, .hoverable.disabled ._18piiw2 { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._sjk18q, .hoverable.disabled ._sjk18q { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._jffq5b, .hoverable.disabled ._jffq5b { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._ilb345, .hoverable.disabled ._ilb345 { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._1wdkfe8, .hoverable.disabled ._1wdkfe8 { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._ml9474, .hoverable.disabled ._ml9474 { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._1qotgf5, .hoverable.disabled ._1qotgf5 { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._lkmgmg, .hoverable.disabled ._lkmgmg { fill: #FFFFFF; fill-opacity: .15; } .hoverable:disabled ._1bawo9g, .hoverable.disabled ._1bawo9g { fill: #1F1F22; fill-opacity: .15; } .hoverable:disabled ._qwfxa7, .hoverable.disabled ._qwfxa7 { 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]: "_9l3sxu",
|
|
5
|
+
[EIconsTheme.DARK]: "_12vd6ip",
|
|
6
6
|
},
|
|
7
7
|
{
|
|
8
|
-
[EIconsTheme.LIGHT]: "
|
|
9
|
-
[EIconsTheme.DARK]: "
|
|
8
|
+
[EIconsTheme.LIGHT]: "_a01tw3",
|
|
9
|
+
[EIconsTheme.DARK]: "_xn382m",
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
|
-
[EIconsTheme.LIGHT]: "
|
|
13
|
-
[EIconsTheme.DARK]: "
|
|
12
|
+
[EIconsTheme.LIGHT]: "_kkfqbx",
|
|
13
|
+
[EIconsTheme.DARK]: "_p9m04v",
|
|
14
14
|
},
|
|
15
15
|
{
|
|
16
|
-
[EIconsTheme.LIGHT]: "
|
|
17
|
-
[EIconsTheme.DARK]: "
|
|
16
|
+
[EIconsTheme.LIGHT]: "_a6n4st",
|
|
17
|
+
[EIconsTheme.DARK]: "_13lmy84",
|
|
18
18
|
},
|
|
19
19
|
{
|
|
20
|
-
[EIconsTheme.LIGHT]: "
|
|
21
|
-
[EIconsTheme.DARK]: "
|
|
20
|
+
[EIconsTheme.LIGHT]: "_idpie9",
|
|
21
|
+
[EIconsTheme.DARK]: "_wnazny",
|
|
22
22
|
},
|
|
23
23
|
{
|
|
24
|
-
[EIconsTheme.LIGHT]: "
|
|
25
|
-
[EIconsTheme.DARK]: "
|
|
24
|
+
[EIconsTheme.LIGHT]: "_3kz2ku",
|
|
25
|
+
[EIconsTheme.DARK]: "_18piiw2",
|
|
26
26
|
},
|
|
27
27
|
{
|
|
28
|
-
[EIconsTheme.LIGHT]: "
|
|
29
|
-
[EIconsTheme.DARK]: "
|
|
28
|
+
[EIconsTheme.LIGHT]: "_18piiw2",
|
|
29
|
+
[EIconsTheme.DARK]: "_3kz2ku",
|
|
30
30
|
},
|
|
31
31
|
{
|
|
32
|
-
[EIconsTheme.LIGHT]: "
|
|
33
|
-
[EIconsTheme.DARK]: "
|
|
32
|
+
[EIconsTheme.LIGHT]: "_sjk18q",
|
|
33
|
+
[EIconsTheme.DARK]: "_jffq5b",
|
|
34
34
|
},
|
|
35
35
|
{
|
|
36
|
-
[EIconsTheme.LIGHT]: "
|
|
37
|
-
[EIconsTheme.DARK]: "
|
|
36
|
+
[EIconsTheme.LIGHT]: "_ilb345",
|
|
37
|
+
[EIconsTheme.DARK]: "_1wdkfe8",
|
|
38
38
|
},
|
|
39
39
|
{
|
|
40
|
-
[EIconsTheme.LIGHT]: "
|
|
41
|
-
[EIconsTheme.DARK]: "
|
|
40
|
+
[EIconsTheme.LIGHT]: "_ml9474",
|
|
41
|
+
[EIconsTheme.DARK]: "_1qotgf5",
|
|
42
42
|
},
|
|
43
43
|
{
|
|
44
|
-
[EIconsTheme.LIGHT]: "
|
|
45
|
-
[EIconsTheme.DARK]: "
|
|
44
|
+
[EIconsTheme.LIGHT]: "_sjk18q",
|
|
45
|
+
[EIconsTheme.DARK]: "_lkmgmg",
|
|
46
46
|
},
|
|
47
47
|
{
|
|
48
|
-
[EIconsTheme.LIGHT]: "
|
|
49
|
-
[EIconsTheme.DARK]: "
|
|
48
|
+
[EIconsTheme.LIGHT]: "_1bawo9g",
|
|
49
|
+
[EIconsTheme.DARK]: "_qwfxa7",
|
|
50
50
|
},
|
|
51
51
|
];
|
|
52
52
|
const getPathClassName = (paletteIndex, theme) => themeToClassNamePalettes[paletteIndex][theme];
|