@dfx.swiss/react-components 1.2.0-beta.5 → 1.2.0-beta.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/stories/CopyButton.d.ts +3 -1
- package/dist/stories/CopyButton.d.ts.map +1 -1
- package/dist/stories/CopyButton.js +2 -2
- package/dist/stories/CopyButton.js.map +1 -1
- package/dist/stories/DfxAssetIcon.d.ts +10 -0
- package/dist/stories/DfxAssetIcon.d.ts.map +1 -1
- package/dist/stories/DfxAssetIcon.js +91 -0
- package/dist/stories/DfxAssetIcon.js.map +1 -1
- package/dist/stories/DfxIcon.d.ts +9 -1
- package/dist/stories/DfxIcon.d.ts.map +1 -1
- package/dist/stories/DfxIcon.js +18 -2
- package/dist/stories/DfxIcon.js.map +1 -1
- package/dist/stories/StyledButton.d.ts +1 -0
- package/dist/stories/StyledButton.d.ts.map +1 -1
- package/dist/stories/StyledButton.js +6 -1
- package/dist/stories/StyledButton.js.map +1 -1
- package/dist/stories/StyledCoinListItem.js +1 -1
- package/dist/stories/StyledCoinListItem.js.map +1 -1
- package/dist/stories/StyledCollapsible.d.ts +4 -2
- package/dist/stories/StyledCollapsible.d.ts.map +1 -1
- package/dist/stories/StyledCollapsible.js +8 -3
- package/dist/stories/StyledCollapsible.js.map +1 -1
- package/dist/stories/StyledDataTableExpandableRow.d.ts +17 -0
- package/dist/stories/StyledDataTableExpandableRow.d.ts.map +1 -0
- package/dist/stories/StyledDataTableExpandableRow.js +70 -0
- package/dist/stories/StyledDataTableExpandableRow.js.map +1 -0
- package/dist/stories/StyledIconButton.d.ts +2 -1
- package/dist/stories/StyledIconButton.d.ts.map +1 -1
- package/dist/stories/StyledIconButton.js +13 -3
- package/dist/stories/StyledIconButton.js.map +1 -1
- package/dist/stories/StyledLink.d.ts +2 -1
- package/dist/stories/StyledLink.d.ts.map +1 -1
- package/dist/stories/StyledLink.js +7 -2
- package/dist/stories/StyledLink.js.map +1 -1
- package/dist/stories/StyledNetworkSelection.js +1 -1
- package/dist/stories/StyledNetworkSelection.js.map +1 -1
- package/dist/stories/StyledSearchInput.js +2 -2
- package/dist/stories/StyledSearchInput.js.map +1 -1
- package/dist/stories/StyledTextBox.d.ts +2 -1
- package/dist/stories/StyledTextBox.d.ts.map +1 -1
- package/dist/stories/StyledTextBox.js +4 -3
- package/dist/stories/StyledTextBox.js.map +1 -1
- package/dist/stories/form/StyledDropdown.d.ts +1 -1
- package/dist/stories/form/StyledDropdown.d.ts.map +1 -1
- package/dist/stories/form/StyledDropdown.js +4 -4
- package/dist/stories/form/StyledDropdown.js.map +1 -1
- package/dist/stories/form/StyledFileUpload.d.ts +16 -0
- package/dist/stories/form/StyledFileUpload.d.ts.map +1 -0
- package/dist/stories/form/StyledFileUpload.js +52 -0
- package/dist/stories/form/StyledFileUpload.js.map +1 -0
- package/dist/stories/form/StyledInput.d.ts.map +1 -1
- package/dist/stories/form/StyledInput.js +1 -1
- package/dist/stories/form/StyledInput.js.map +1 -1
- package/dist/stories/form/StyledModalButton.d.ts.map +1 -1
- package/dist/stories/form/StyledModalButton.js +1 -1
- package/dist/stories/form/StyledModalButton.js.map +1 -1
- package/dist/stories/form/StyledModalDropdown.d.ts.map +1 -1
- package/dist/stories/form/StyledModalDropdown.js +1 -1
- package/dist/stories/form/StyledModalDropdown.js.map +1 -1
- package/dist/stories/form/StyledSearchDropdown.d.ts.map +1 -1
- package/dist/stories/form/StyledSearchDropdown.js +15 -12
- package/dist/stories/form/StyledSearchDropdown.js.map +1 -1
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export { default as StyledCollapsible } from './stories/StyledCollapsible';
|
|
|
14
14
|
export { default as StyledTextBox } from './stories/StyledTextBox';
|
|
15
15
|
export { default as StyledDataTable, AlignContent } from './stories/StyledDataTable';
|
|
16
16
|
export { default as StyledDataTableRow } from './stories/StyledDataTableRow';
|
|
17
|
+
export { default as StyledDataTableExpandableRow } from './stories/StyledDataTableExpandableRow';
|
|
17
18
|
export { default as StyledDataTextRow } from './stories/StyledDataTextRow';
|
|
18
19
|
export { default as StyledIconButton } from './stories/StyledIconButton';
|
|
19
20
|
export { default as StyledInfoText, StyledInfoTextSize } from './stories/StyledInfoText';
|
|
@@ -35,6 +36,7 @@ export { default as StyledBankAccountListItem } from './stories/form/StyledBankA
|
|
|
35
36
|
export { default as StyledDropdown } from './stories/form/StyledDropdown';
|
|
36
37
|
export { default as StyledSearchDropdown } from './stories/form/StyledSearchDropdown';
|
|
37
38
|
export { default as StyledInput } from './stories/form/StyledInput';
|
|
39
|
+
export { default as StyledFileUpload } from './stories/form/StyledFileUpload';
|
|
38
40
|
export { default as StyledModalDropdown } from './stories/form/StyledModalDropdown';
|
|
39
41
|
export { default as StyledModalButton } from './stories/form/StyledModalButton';
|
|
40
42
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js
CHANGED
|
@@ -15,6 +15,7 @@ export { default as StyledCollapsible } from './stories/StyledCollapsible';
|
|
|
15
15
|
export { default as StyledTextBox } from './stories/StyledTextBox';
|
|
16
16
|
export { default as StyledDataTable, AlignContent } from './stories/StyledDataTable';
|
|
17
17
|
export { default as StyledDataTableRow } from './stories/StyledDataTableRow';
|
|
18
|
+
export { default as StyledDataTableExpandableRow } from './stories/StyledDataTableExpandableRow';
|
|
18
19
|
export { default as StyledDataTextRow } from './stories/StyledDataTextRow';
|
|
19
20
|
export { default as StyledIconButton } from './stories/StyledIconButton';
|
|
20
21
|
export { default as StyledInfoText, StyledInfoTextSize } from './stories/StyledInfoText';
|
|
@@ -38,6 +39,7 @@ export { default as StyledBankAccountListItem } from './stories/form/StyledBankA
|
|
|
38
39
|
export { default as StyledDropdown } from './stories/form/StyledDropdown';
|
|
39
40
|
export { default as StyledSearchDropdown } from './stories/form/StyledSearchDropdown';
|
|
40
41
|
export { default as StyledInput } from './stories/form/StyledInput';
|
|
42
|
+
export { default as StyledFileUpload } from './stories/form/StyledFileUpload';
|
|
41
43
|
export { default as StyledModalDropdown } from './stories/form/StyledModalDropdown';
|
|
42
44
|
export { default as StyledModalButton } from './stories/form/StyledModalButton';
|
|
43
45
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
import { IconColor } from './DfxIcon';
|
|
2
3
|
interface CopyButtonProps {
|
|
3
4
|
onCopy: () => void;
|
|
4
5
|
inline?: boolean;
|
|
6
|
+
color?: IconColor;
|
|
5
7
|
}
|
|
6
|
-
export declare function CopyButton({ onCopy, inline }: CopyButtonProps): JSX.Element;
|
|
8
|
+
export declare function CopyButton({ onCopy, inline, color }: CopyButtonProps): JSX.Element;
|
|
7
9
|
export {};
|
|
8
10
|
//# sourceMappingURL=CopyButton.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CopyButton.d.ts","sourceRoot":"","sources":["../../src/stories/CopyButton.tsx"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"file":"CopyButton.d.ts","sourceRoot":"","sources":["../../src/stories/CopyButton.tsx"],"names":[],"mappings":";AACA,OAAO,EAAE,SAAS,EAAe,MAAM,WAAW,CAAC;AAGnD,UAAU,eAAe;IACvB,MAAM,EAAE,MAAM,IAAI,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,KAAK,CAAC,EAAE,SAAS,CAAC;CACnB;AAED,wBAAgB,UAAU,CAAC,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,EAAE,eAAe,GAAG,GAAG,CAAC,OAAO,CAgBlF"}
|
|
@@ -3,7 +3,7 @@ import { useState } from 'react';
|
|
|
3
3
|
import { IconVariant } from './DfxIcon';
|
|
4
4
|
import StyledIconButton from './StyledIconButton';
|
|
5
5
|
export function CopyButton(_a) {
|
|
6
|
-
var onCopy = _a.onCopy, inline = _a.inline;
|
|
6
|
+
var onCopy = _a.onCopy, inline = _a.inline, color = _a.color;
|
|
7
7
|
var _b = useState(false), showsCheckmark = _b[0], setShowsCheckmark = _b[1];
|
|
8
8
|
return (_jsx(StyledIconButton, { icon: showsCheckmark ? IconVariant.CHECK : IconVariant.COPY, onClick: function () {
|
|
9
9
|
onCopy();
|
|
@@ -11,6 +11,6 @@ export function CopyButton(_a) {
|
|
|
11
11
|
setTimeout(function () {
|
|
12
12
|
setShowsCheckmark(false);
|
|
13
13
|
}, 1000);
|
|
14
|
-
}, inline: inline }));
|
|
14
|
+
}, inline: inline, color: color }));
|
|
15
15
|
}
|
|
16
16
|
//# sourceMappingURL=CopyButton.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CopyButton.js","sourceRoot":"","sources":["../../src/stories/CopyButton.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACjC,OAAO,
|
|
1
|
+
{"version":3,"file":"CopyButton.js","sourceRoot":"","sources":["../../src/stories/CopyButton.tsx"],"names":[],"mappings":";AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AACjC,OAAO,EAAa,WAAW,EAAE,MAAM,WAAW,CAAC;AACnD,OAAO,gBAAgB,MAAM,oBAAoB,CAAC;AAQlD,MAAM,UAAU,UAAU,CAAC,EAA0C;QAAxC,MAAM,YAAA,EAAE,MAAM,YAAA,EAAE,KAAK,WAAA;IAC1C,IAAA,KAAsC,QAAQ,CAAC,KAAK,CAAC,EAApD,cAAc,QAAA,EAAE,iBAAiB,QAAmB,CAAC;IAC5D,OAAO,CACL,KAAC,gBAAgB,IACf,IAAI,EAAE,cAAc,CAAC,CAAC,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,WAAW,CAAC,IAAI,EAC3D,OAAO,EAAE;YACP,MAAM,EAAE,CAAC;YACT,iBAAiB,CAAC,IAAI,CAAC,CAAC;YACxB,UAAU,CAAC;gBACT,iBAAiB,CAAC,KAAK,CAAC,CAAC;YAC3B,CAAC,EAAE,IAAI,CAAC,CAAC;QACX,CAAC,EACD,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,KAAK,GACZ,CACH,CAAC;AACJ,CAAC"}
|
|
@@ -9,6 +9,7 @@ export declare enum AssetIconVariant {
|
|
|
9
9
|
BNB = "BNB",
|
|
10
10
|
DFI = "DFI",
|
|
11
11
|
USDC = "USDC",
|
|
12
|
+
USDCe = "USDC.e",
|
|
12
13
|
BUSD = "BUSD",
|
|
13
14
|
ETH = "ETH",
|
|
14
15
|
DAI = "DAI",
|
|
@@ -42,6 +43,11 @@ export declare enum AssetIconVariant {
|
|
|
42
43
|
FOX = "FOX",
|
|
43
44
|
BGB = "BGB",
|
|
44
45
|
XMR = "XMR",
|
|
46
|
+
ZCHF = "ZCHF",
|
|
47
|
+
FPS = "FPS",
|
|
48
|
+
WFPS = "WFPS",
|
|
49
|
+
YLD = "YLD",
|
|
50
|
+
ISLM = "ISLM",
|
|
45
51
|
EUR = "EUR",
|
|
46
52
|
USD = "USD",
|
|
47
53
|
CHF = "CHF",
|
|
@@ -54,5 +60,9 @@ export declare enum AssetIconSize {
|
|
|
54
60
|
}
|
|
55
61
|
export declare const SizeContext: import("react").Context<AssetIconSize>;
|
|
56
62
|
export default function DfxAssetIcon({ size, asset, disabled }: DfxAssetIconProps): import("react/jsx-runtime").JSX.Element;
|
|
63
|
+
interface BaseAssetIconProps {
|
|
64
|
+
forceColor?: string;
|
|
65
|
+
}
|
|
66
|
+
export declare function DfxAssetIconZCHF({ forceColor }: BaseAssetIconProps): import("react/jsx-runtime").JSX.Element;
|
|
57
67
|
export {};
|
|
58
68
|
//# sourceMappingURL=DfxAssetIcon.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DfxAssetIcon.d.ts","sourceRoot":"","sources":["../../src/stories/DfxAssetIcon.tsx"],"names":[],"mappings":";AAEA,UAAU,iBAAiB;IACzB,IAAI,CAAC,EAAE,aAAa,CAAC;IACrB,KAAK,EAAE,gBAAgB,CAAC;IACxB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,oBAAY,gBAAgB;IAC1B,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,IAAI,SAAS;IACb,KAAK,UAAU;IACf,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,KAAK,UAAU;IACf,IAAI,UAAU;IACd,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,IAAI,SAAS;IACb,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,GAAG,QAAQ;
|
|
1
|
+
{"version":3,"file":"DfxAssetIcon.d.ts","sourceRoot":"","sources":["../../src/stories/DfxAssetIcon.tsx"],"names":[],"mappings":";AAEA,UAAU,iBAAiB;IACzB,IAAI,CAAC,EAAE,aAAa,CAAC;IACrB,KAAK,EAAE,gBAAgB,CAAC;IACxB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,oBAAY,gBAAgB;IAC1B,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,KAAK,WAAW;IAChB,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,IAAI,SAAS;IACb,KAAK,UAAU;IACf,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,KAAK,UAAU;IACf,IAAI,UAAU;IACd,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,IAAI,SAAS;IACb,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,GAAG,QAAQ;IACX,IAAI,SAAS;IAEb,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,GAAG,QAAQ;IACX,GAAG,QAAQ;CACZ;AAED,oBAAY,aAAa;IACvB,EAAE,UAAU;IACZ,EAAE,WAAW;IACb,EAAE,UAAU;CACb;AAED,eAAO,MAAM,WAAW,wCAAkC,CAAC;AA2D3D,MAAM,CAAC,OAAO,UAAU,YAAY,CAAC,EAAE,IAAuB,EAAE,KAAK,EAAE,QAAQ,EAAE,EAAE,iBAAiB,2CAOnG;AAED,UAAU,kBAAkB;IAC1B,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAqxGD,wBAAgB,gBAAgB,CAAC,EAAE,UAAU,EAAE,EAAE,kBAAkB,2CAw5BlE"}
|
|
@@ -18,6 +18,7 @@ export var AssetIconVariant;
|
|
|
18
18
|
AssetIconVariant["BNB"] = "BNB";
|
|
19
19
|
AssetIconVariant["DFI"] = "DFI";
|
|
20
20
|
AssetIconVariant["USDC"] = "USDC";
|
|
21
|
+
AssetIconVariant["USDCe"] = "USDC.e";
|
|
21
22
|
AssetIconVariant["BUSD"] = "BUSD";
|
|
22
23
|
AssetIconVariant["ETH"] = "ETH";
|
|
23
24
|
AssetIconVariant["DAI"] = "DAI";
|
|
@@ -51,6 +52,11 @@ export var AssetIconVariant;
|
|
|
51
52
|
AssetIconVariant["FOX"] = "FOX";
|
|
52
53
|
AssetIconVariant["BGB"] = "BGB";
|
|
53
54
|
AssetIconVariant["XMR"] = "XMR";
|
|
55
|
+
AssetIconVariant["ZCHF"] = "ZCHF";
|
|
56
|
+
AssetIconVariant["FPS"] = "FPS";
|
|
57
|
+
AssetIconVariant["WFPS"] = "WFPS";
|
|
58
|
+
AssetIconVariant["YLD"] = "YLD";
|
|
59
|
+
AssetIconVariant["ISLM"] = "ISLM";
|
|
54
60
|
AssetIconVariant["EUR"] = "EUR";
|
|
55
61
|
AssetIconVariant["USD"] = "USD";
|
|
56
62
|
AssetIconVariant["CHF"] = "CHF";
|
|
@@ -85,6 +91,10 @@ var VARIANT_MAPS = (_b = {},
|
|
|
85
91
|
var forceColor = _a.forceColor;
|
|
86
92
|
return _jsx(DfxAssetIconUSDC, { forceColor: forceColor });
|
|
87
93
|
},
|
|
94
|
+
_b[AssetIconVariant.USDCe] = function (_a) {
|
|
95
|
+
var forceColor = _a.forceColor;
|
|
96
|
+
return _jsx(DfxAssetIconUSDC, { forceColor: forceColor });
|
|
97
|
+
},
|
|
88
98
|
_b[AssetIconVariant.BUSD] = function (_a) {
|
|
89
99
|
var forceColor = _a.forceColor;
|
|
90
100
|
return _jsx(DfxAssetIconBUSD, { forceColor: forceColor });
|
|
@@ -217,6 +227,26 @@ var VARIANT_MAPS = (_b = {},
|
|
|
217
227
|
var forceColor = _a.forceColor;
|
|
218
228
|
return _jsx(DfxAssetIconXMR, { forceColor: forceColor });
|
|
219
229
|
},
|
|
230
|
+
_b[AssetIconVariant.ZCHF] = function (_a) {
|
|
231
|
+
var forceColor = _a.forceColor;
|
|
232
|
+
return _jsx(DfxAssetIconZCHF, { forceColor: forceColor });
|
|
233
|
+
},
|
|
234
|
+
_b[AssetIconVariant.FPS] = function (_a) {
|
|
235
|
+
var forceColor = _a.forceColor;
|
|
236
|
+
return _jsx(DfxAssetIconFPS, { forceColor: forceColor });
|
|
237
|
+
},
|
|
238
|
+
_b[AssetIconVariant.WFPS] = function (_a) {
|
|
239
|
+
var forceColor = _a.forceColor;
|
|
240
|
+
return _jsx(DfxAssetIconFPS, { forceColor: forceColor });
|
|
241
|
+
},
|
|
242
|
+
_b[AssetIconVariant.YLD] = function (_a) {
|
|
243
|
+
var forceColor = _a.forceColor;
|
|
244
|
+
return _jsx(DfxAssetIconYLD, { forceColor: forceColor });
|
|
245
|
+
},
|
|
246
|
+
_b[AssetIconVariant.ISLM] = function (_a) {
|
|
247
|
+
var forceColor = _a.forceColor;
|
|
248
|
+
return _jsx(DfxAssetIconISLM, { forceColor: forceColor });
|
|
249
|
+
},
|
|
220
250
|
_b[AssetIconVariant.EUR] = function (_a) {
|
|
221
251
|
var forceColor = _a.forceColor;
|
|
222
252
|
return _jsx(DfxAssetIconEUR, { forceColor: forceColor });
|
|
@@ -496,6 +526,67 @@ function DfxAssetIconXMR(_a) {
|
|
|
496
526
|
var sizeContext = useContext(SizeContext);
|
|
497
527
|
return (_jsxs("svg", __assign({ width: SIZE_MAPS[sizeContext], height: SIZE_MAPS[sizeContext], viewBox: "0 0 3756.09 3756.49", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: [_jsx("title", { children: 'monero' }), _jsx("path", { d: "M4128 2249.81c0 1037.19-840.74 1878.05-1878 1878.05S372 3287 372 2249.81 1212.76 371.75 2250 371.75s1878 840.79 1878 1878.06Z", style: { fill: '#fff' }, transform: "translate(-371.96 -371.75)" }), _jsx("path", { d: "M2250 371.75c-1036.89 0-1879.12 842.06-1877.8 1878 .26 207.26 33.31 406.63 95.34 593.12h561.88V1263L2250 2483.57 3470.52 1263v1579.9h562c62.12-186.48 95-385.85 95.37-593.12C4129.66 1212.76 3287 372 2250 372Z", "data-name": 149931032, style: { fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#f26822' }, transform: "translate(-371.96 -371.75)" }), _jsx("path", { d: "m1969.3 2764.17-532.67-532.7v994.14h-407.25l-384.29.07c329.63 540.8 925.35 902.56 1604.91 902.56s1275.31-361.84 1605-902.64h-791.75v-994.13l-532.7 532.7-280.61 280.61-280.62-280.61Z", "data-name": 149931160, style: { fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#4d4d4d' }, transform: "translate(-371.96 -371.75)" })] })));
|
|
498
528
|
}
|
|
529
|
+
export function DfxAssetIconZCHF(_a) {
|
|
530
|
+
var forceColor = _a.forceColor;
|
|
531
|
+
var sizeContext = useContext(SizeContext);
|
|
532
|
+
var cls = "cls-".concat(forceColor === null || forceColor === void 0 ? void 0 : forceColor.replace('#', ''));
|
|
533
|
+
return (_jsxs("svg", __assign({ width: SIZE_MAPS[sizeContext], height: SIZE_MAPS[sizeContext], viewBox: "0 0 246.22 238.68", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: [_jsx("defs", { children: _jsx("style", { children: ".".concat(cls, "-2{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#f6f8f9', ";}.").concat(cls, "-3{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#6a7979', ";}.").concat(cls, "-4{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#040404', ";}.").concat(cls, "-6{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#e3e2ea', ";}.").concat(cls, "-7{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#e8e9ea', ";}.").concat(cls, "-8{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#fff', ";}.").concat(cls, "-9{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#f1f1f4', ";}.").concat(cls, "-11{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#fbfbfc', ";}.").concat(cls, "-12{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#e5e6f0', ";}.").concat(cls, "-13{fill:").concat(forceColor ? '#ffffff' : '#993c4d', ";}.").concat(cls, "-15{fill:").concat(forceColor ? '#ffffff' : '#b75868', ";}.").concat(cls, "-16{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#b8b8d2', ";}.").concat(cls, "-18{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#c2c5c9', ";}.").concat(cls, "-19{fill:").concat(forceColor ? '#ffffff' : '#913648', ";}.").concat(cls, "-20{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#babad4', ";}.").concat(cls, "-23{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#8d8f92', ";}.").concat(cls, "-25{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#313c3d', ";}.").concat(cls, "-26{fill:").concat(forceColor ? '#ffffff' : '#8d3748', ";}.").concat(cls, "-27{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#cdced1', ";}.").concat(cls, "-28{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#b1b5b8', ";}.").concat(cls, "-32{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#d8d8db', ";}.").concat(cls, "-33{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#bbbbc2', ";}.").concat(cls, "-35{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#c7c8cb', ";}.").concat(cls, "-36{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#dcdbe0', ";}.").concat(cls, "-37{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#dbdadf', ";}.").concat(cls, "-38{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#d3d3d6', ";}.").concat(cls, "-39{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#c8cacf', ";}.").concat(cls, "-40{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#d5d7d9', ";}.").concat(cls, "-41{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#172222', ";}.").concat(cls, "-44{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#1e292a', ";}.").concat(cls, "-45{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#131919', ";}.").concat(cls, "-47{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#43524e', ";}.").concat(cls, "-48{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#434f52', ";}.").concat(cls, "-49{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#090a0a', ";}.").concat(cls, "-50{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#080808', ";}.").concat(cls, "-52{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#1c252e', ";}.").concat(cls, "-54{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#374543', ";}.").concat(cls, "-56{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#445150', ";}.").concat(cls, "-57{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#0a0a0a', ";}.").concat(cls, "-58{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#707980', ";}.").concat(cls, "-60{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#565f62', ";}.").concat(cls, "-61{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#293334', ";}.").concat(cls, "-62{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#263234', ";}.").concat(cls, "-63{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#2e403b', ";}.").concat(cls, "-65{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#591e29', ";}.").concat(cls, "-66{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#828990', ";}.").concat(cls, "-67{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#4d5856', ";}.").concat(cls, "-68{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#757b83', ";}.").concat(cls, "-69{fill:").concat(forceColor !== null && forceColor !== void 0 ? forceColor : '#4e6360', ";}") }) }), _jsx("path", { d: "M100.5 0h-6.28v7.54h6.28V0Zm7.54 0h-7.54v7.54h7.54V0Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M115.57 0h-7.54v7.54h7.54V0Zm7.54 0h-7.54v7.54h7.54V0Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M129.39 0h-6.28v7.54h7.54V0h-1.26Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M136.93 0h-7.54v7.54h7.54V0Zm7.54 0h-7.54v7.54h7.54V0Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M152 0h-7.54v7.54H152V0Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M158.28 0h-7.54v7.54h7.54V0ZM79.14 7.54H71.6v7.54h7.54V7.54Zm7.54 0h-7.54v7.54h7.54V7.54Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M94.22 7.54h-7.54v7.54h7.54V7.54Z", style: {
|
|
534
|
+
fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#1c2525',
|
|
535
|
+
} }), _jsx("path", { d: "M100.5 7.54h-6.28v7.54h6.28V7.54Zm7.54 0h-7.54v7.54h7.54V7.54Z", className: "".concat(cls, "-60") }), _jsx("path", { d: "M115.57 7.54h-7.54v7.54h7.54V7.54Z", className: "".concat(cls, "-3") }), _jsx("path", { d: "M123.11 7.54h-7.54v7.54h7.54V7.54Z", className: "".concat(cls, "-66") }), _jsx("path", { d: "M129.39 7.54h-6.28v7.54h7.54V7.54h-1.26Z", className: "".concat(cls, "-66") }), _jsx("path", { d: "M136.93 7.54h-7.54v7.54h7.54V7.54Zm7.54 0h-7.54v7.54h7.54V7.54Z", className: "".concat(cls, "-66") }), _jsx("path", { d: "M152 7.54h-7.54v7.54H152V7.54Z", className: "".concat(cls, "-66") }), _jsx("path", { d: "M158.28 7.54h-7.54v7.54h7.54V7.54Z", className: "".concat(cls, "-66") }), _jsx("path", { d: "M165.82 7.54h-7.54v7.54h7.54V7.54Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M173.36 7.54h-7.54v7.54h7.54V7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M65.32 15.07h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M79.14 15.07H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-60") }), _jsx("path", { d: "M94.22 15.07h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-48") }), _jsx("path", { d: "M100.5 15.07h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-28") }), _jsx("path", { d: "M115.57 15.07h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-39") }), _jsx("path", { d: "M129.39 15.07h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-39") }), _jsx("path", { d: "M136.93 15.07h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-39") }), _jsx("path", { d: "M152 15.07h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-39") }), _jsx("path", { d: "M158.28 15.07h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-39") }), _jsx("path", { d: "M165.82 15.07h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-3") }), _jsx("path", { d: "M180.9 15.07h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M187.18 15.07h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M65.32 21.36h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-58") }), _jsx("path", { d: "M79.14 21.36H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-56") }), _jsx("path", { d: "M94.22 21.36h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-39") }), _jsx("path", { d: "M115.57 21.36h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M123.11 21.36h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M129.39 21.36h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M136.93 21.36h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M152 21.36h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M158.28 21.36h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M165.82 21.36h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-39") }), _jsx("path", { d: "M187.18 21.36h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-39") }), _jsx("path", { d: "M194.72 21.36h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M202.25 21.36h-7.54v7.54h7.54v-7.54ZM42.71 28.89h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M50.25 28.89h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-44") }), _jsx("path", { d: "M65.32 28.89h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-67") }), _jsx("path", { d: "M79.14 28.89H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-11") }), _jsx("path", { d: "M94.22 28.89h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-57") }), _jsx("path", { d: "M115.57 28.89h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M129.39 28.89h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M136.93 28.89h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M152 28.89h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M158.28 28.89h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M165.82 28.89h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M187.18 28.89h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-39") }), _jsx("path", { d: "M202.25 28.89h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-39") }), _jsx("path", { d: "M209.79 28.89h-7.54v7.54h7.54v-7.54ZM36.43 36.43h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M42.71 36.43h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-66") }), _jsx("path", { d: "M50.25 36.43h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-35") }), _jsx("path", { d: "M65.32 36.43h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-38") }), _jsx("path", { d: "M71.6 36.43h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-11") }), _jsx("path", { d: "M79.14 36.43H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-57") }), _jsx("path", { d: "M94.22 36.43h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M115.57 36.43h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M129.39 36.43h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M136.93 36.43h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M152 36.43h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M158.28 36.43h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M165.82 36.43h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M173.36 36.43h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M187.18 36.43h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M194.72 36.43h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M202.25 36.43h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-39") }), _jsx("path", { d: "M216.07 36.43h-7.54v7.54h7.54v-7.54ZM28.89 43.97h-7.54v6.28h7.54v-6.28Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M36.43 43.97h-7.54v6.28h7.54v-6.28Zm6.28 0h-6.28v6.28h7.54v-6.28h-1.26Z", className: "".concat(cls, "-35") }), _jsx("path", { d: "M50.25 43.97h-7.54v6.28h7.54v-6.28Z", className: "".concat(cls, "-56") }), _jsx("path", { d: "M65.32 43.97h-7.54v6.28h7.54v-6.28Z", className: "".concat(cls, "-27") }), _jsx("path", { d: "M71.6 43.97h-6.28v6.28h7.54v-6.28H71.6Z", className: "".concat(cls, "-57") }), _jsx("path", { d: "M79.14 43.97H71.6v6.28h7.54v-6.28Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M86.68 43.97h-7.54v6.28h7.54v-6.28Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M94.22 43.97h-7.54v6.28h7.54v-6.28Zm6.28 0h-6.28v6.28h6.28v-6.28Zm7.54 0h-7.54v6.28h7.54v-6.28Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M115.57 43.97h-7.54v6.28h7.54v-6.28Zm7.54 0h-7.54v6.28h7.54v-6.28Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M129.39 43.97h-6.28v6.28h7.54v-6.28h-1.26Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M136.93 43.97h-7.54v6.28h7.54v-6.28Zm7.54 0h-7.54v6.28h7.54v-6.28Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M152 43.97h-7.54v6.28H152v-6.28Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M158.28 43.97h-7.54v6.28h7.54v-6.28Zm7.54 0h-7.54v6.28h7.54v-6.28Zm7.54 0h-7.54v6.28h7.54v-6.28Zm7.54 0h-7.54v6.28h7.54v-6.28Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M187.18 43.97h-7.54v6.28h7.54v-6.28Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M194.72 43.97h-7.54v6.28h7.54v-6.28Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M202.25 43.97h-7.54v6.28h7.54v-6.28Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M209.79 43.97h-7.54v6.28h7.54v-6.28Z", className: "".concat(cls, "-39") }), _jsx("path", { d: "M216.07 43.97h-7.54v6.28h7.54v-6.28Z", className: "".concat(cls, "-39") }), _jsx("path", { d: "M223.61 43.97h-7.54v6.28h7.54v-6.28ZM28.89 50.25h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M36.43 50.25h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-35") }), _jsx("path", { d: "M42.71 50.25h-6.28v7.54h7.54v-7.54h-1.26Z", style: {
|
|
536
|
+
fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#384544',
|
|
537
|
+
} }), _jsx("path", { d: "M50.25 50.25h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-38") }), _jsx("path", { d: "M65.32 50.25h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M71.6 50.25h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M79.14 50.25H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M94.22 50.25h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M115.57 50.25h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M129.39 50.25h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M136.93 50.25h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M152 50.25h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M158.28 50.25h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M165.82 50.25h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M187.18 50.25h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M202.25 50.25h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M209.79 50.25h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M216.07 50.25h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-39") }), _jsx("path", { d: "M223.61 50.25h-7.54v7.54h7.54v-7.54Z", style: {
|
|
538
|
+
fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#313b3c',
|
|
539
|
+
} }), _jsx("path", { d: "M21.36 57.79h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M28.89 57.79h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-35") }), _jsx("path", { d: "M36.43 57.79h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-69") }), _jsx("path", { d: "M42.71 57.79h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-37") }), _jsx("path", { d: "M50.25 57.79h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-37") }), _jsx("path", { d: "M65.32 57.79h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M71.6 57.79h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M79.14 57.79H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M94.22 57.79h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M115.57 57.79h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M129.39 57.79h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M136.93 57.79h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M152 57.79h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M158.28 57.79h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M165.82 57.79h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M187.18 57.79h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M202.25 57.79h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M209.79 57.79h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M216.07 57.79h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-47") }), _jsx("path", { d: "M223.61 57.79h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-6") }), _jsx("path", { d: "M231.15 57.79h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M21.36 65.32h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-45") }), _jsx("path", { d: "M28.89 65.32h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-35") }), _jsx("path", { d: "M36.43 65.32h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-69") }), _jsx("path", { d: "M42.71 65.32h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-37") }), _jsx("path", { d: "M50.25 65.32h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-37") }), _jsx("path", { d: "M65.32 65.32h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M79.14 65.32H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M94.22 65.32h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M115.57 65.32h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M129.39 65.32h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M136.93 65.32h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M152 65.32h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M158.28 65.32h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M165.82 65.32h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M187.18 65.32h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M202.25 65.32h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M209.79 65.32h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M216.07 65.32h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-47") }), _jsx("path", { d: "M223.61 65.32h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-6") }), _jsx("path", { d: "M231.15 65.32h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-49") }), _jsx("path", { d: "M21.36 72.86h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-45") }), _jsx("path", { d: "M28.89 72.86h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-35") }), _jsx("path", { d: "M36.43 72.86h-7.54v7.54h7.54v-7.54Z", style: {
|
|
540
|
+
fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#364b47',
|
|
541
|
+
} }), _jsx("path", { d: "M42.71 72.86h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-37") }), _jsx("path", { d: "M50.25 72.86h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-57") }), _jsx("path", { d: "M65.32 72.86h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M79.14 72.86H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M94.22 72.86h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M115.57 72.86h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M129.39 72.86h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M136.93 72.86h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M152 72.86h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M158.28 72.86h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M165.82 72.86h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M187.18 72.86h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M202.25 72.86h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M216.07 72.86h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M223.61 72.86h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-48") }), _jsx("path", { d: "M231.15 72.86h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-27") }), _jsx("path", { d: "M238.68 72.86h-7.54v7.54h7.54v-7.54ZM13.82 79.14H7.54v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M21.36 79.14h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-35") }), _jsx("path", { d: "M28.89 79.14h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-69") }), _jsx("path", { d: "M36.43 79.14h-7.54v7.54h7.54v-7.54Z", style: {
|
|
542
|
+
fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#f3f3f5',
|
|
543
|
+
} }), _jsx("path", { d: "M42.71 79.14h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-37") }), _jsx("path", { d: "M50.25 79.14h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M65.32 79.14h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M79.14 79.14H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M94.22 79.14h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M115.57 79.14h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M129.39 79.14h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M136.93 79.14h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M152 79.14h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M158.28 79.14h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M165.82 79.14h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M187.18 79.14h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M202.25 79.14h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M216.07 79.14h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M223.61 79.14h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-48") }), _jsx("path", { d: "M231.15 79.14h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-27") }), _jsx("path", { d: "M238.68 79.14h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-44") }), _jsx("path", { d: "M13.82 86.68H7.54v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M21.36 86.68h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-28") }), _jsx("path", { d: "M28.89 86.68h-7.54v7.54h7.54v-7.54Z", style: {
|
|
544
|
+
fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#374c4a',
|
|
545
|
+
} }), _jsx("path", { d: "M36.43 86.68h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-37") }), _jsx("path", { d: "M50.25 86.68h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M65.32 86.68h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M79.14 86.68H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M94.22 86.68h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M115.57 86.68h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-8") }), _jsx("path", { d: "M123.11 86.68h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M129.39 86.68h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M136.93 86.68h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M152 86.68h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M158.28 86.68h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M165.82 86.68h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M187.18 86.68h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M202.25 86.68h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M216.07 86.68h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M223.61 86.68h-7.54v7.54h7.54v-7.54Z", style: {
|
|
546
|
+
fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#323e40',
|
|
547
|
+
} }), _jsx("path", { d: "M231.15 86.68h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-27") }), _jsx("path", { d: "M238.68 86.68h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-44") }), _jsx("path", { d: "M7.54 94.22H0v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M13.82 94.22H7.54v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-68") }), _jsx("path", { d: "M21.36 94.22h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-63") }), _jsx("path", { d: "M28.89 94.22h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-9") }), _jsx("path", { d: "M42.71 94.22h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M50.25 94.22h-7.54v7.54h7.54v-7.54Zm15.07 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M71.6 94.22h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-8") }), _jsx("path", { d: "M79.14 94.22H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-8") }), _jsx("path", { d: "M94.22 94.22h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-8") }), _jsx("path", { d: "M115.57 94.22h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-8") }), _jsx("path", { d: "M123.11 94.22h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M129.39 94.22h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M136.93 94.22h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M152 94.22h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M158.28 94.22h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M165.82 94.22h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-8") }), _jsx("path", { d: "M187.18 94.22h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-8") }), _jsx("path", { d: "M202.25 94.22h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M209.79 94.22h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M216.07 94.22h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M223.61 94.22h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-26") }), _jsx("path", { d: "M231.15 94.22h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-52") }), _jsx("path", { d: "M238.68 94.22h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-36") }), _jsx("path", { d: "M244.96 94.22h-6.28v7.54h7.54v-7.54h-1.26ZM7.54 101.75H0v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M13.82 101.75H7.54v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-18") }), _jsx("path", { d: "M21.36 101.75h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-54") }), _jsx("path", { d: "M28.89 101.75h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-9") }), _jsx("path", { d: "M42.71 101.75h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M50.25 101.75h-7.54v7.54h7.54v-7.54Zm15.07 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M71.6 101.75h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-8") }), _jsx("path", { d: "M79.14 101.75H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M94.22 101.75h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M115.57 101.75h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M129.39 101.75h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M136.93 101.75h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M152 101.75h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M158.28 101.75h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M187.18 101.75h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M202.25 101.75h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M209.79 101.75h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M216.07 101.75h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M223.61 101.75h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-26") }), _jsx("path", { d: "M231.15 101.75h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-52") }), _jsx("path", { d: "M238.68 101.75h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-36") }), _jsx("path", { d: "M244.96 101.75h-6.28v7.54h7.54v-7.54h-1.26ZM7.54 108.04H0v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M13.82 108.04H7.54v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-18") }), _jsx("path", { d: "M21.36 108.04h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-54") }), _jsx("path", { d: "M28.89 108.04h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-9") }), _jsx("path", { d: "M42.71 108.04h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M50.25 108.04h-7.54v7.54h7.54v-7.54Zm15.07 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M71.6 108.04h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-8") }), _jsx("path", { d: "M79.14 108.04H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M94.22 108.04h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M115.57 108.04h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M129.39 108.04h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M136.93 108.04h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M152 108.04h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M158.28 108.04h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M187.18 108.04h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M202.25 108.04h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M209.79 108.04h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M216.07 108.04h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M223.61 108.04h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-26") }), _jsx("path", { d: "M231.15 108.04h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-52") }), _jsx("path", { d: "M238.68 108.04h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-36") }), _jsx("path", { d: "M244.96 108.04h-6.28v7.54h7.54v-7.54h-1.26ZM7.54 115.57H0v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M13.82 115.57H7.54v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-18") }), _jsx("path", { d: "M21.36 115.57h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-54") }), _jsx("path", { d: "M28.89 115.57h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-9") }), _jsx("path", { d: "M42.71 115.57h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M50.25 115.57h-7.54v7.54h7.54v-7.54Zm15.07 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M71.6 115.57h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-8") }), _jsx("path", { d: "M79.14 115.57H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M94.22 115.57h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M115.57 115.57h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M129.39 115.57h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M136.93 115.57h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M152 115.57h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M158.28 115.57h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M187.18 115.57h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M202.25 115.57h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M209.79 115.57h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M216.07 115.57h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M231.15 115.57h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-52") }), _jsx("path", { d: "M238.68 115.57h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-36") }), _jsx("path", { d: "M244.96 115.57h-6.28v7.54h7.54v-7.54h-1.26ZM7.54 123.11H0v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M13.82 123.11H7.54v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-18") }), _jsx("path", { d: "M21.36 123.11h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-54") }), _jsx("path", { d: "M28.89 123.11h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-9") }), _jsx("path", { d: "M42.71 123.11h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M50.25 123.11h-7.54v7.54h7.54v-7.54Zm15.07 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M71.6 123.11h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-8") }), _jsx("path", { d: "M79.14 123.11H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M94.22 123.11h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M115.57 123.11h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M129.39 123.11h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M136.93 123.11h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M152 123.11h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M158.28 123.11h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M187.18 123.11h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M202.25 123.11h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M209.79 123.11h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M216.07 123.11h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M231.15 123.11h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-52") }), _jsx("path", { d: "M238.68 123.11h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-36") }), _jsx("path", { d: "M244.96 123.11h-6.28v7.54h7.54v-7.54h-1.26ZM7.54 130.65H0v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M13.82 130.65H7.54v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-18") }), _jsx("path", { d: "M21.36 130.65h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-63") }), _jsx("path", { d: "M28.89 130.65h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-9") }), _jsx("path", { d: "M42.71 130.65h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M50.25 130.65h-7.54v7.54h7.54v-7.54Zm15.07 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M71.6 130.65h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-8") }), _jsx("path", { d: "M79.14 130.65H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M94.22 130.65h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M115.57 130.65h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M129.39 130.65h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M136.93 130.65h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M152 130.65h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M158.28 130.65h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M165.82 130.65h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M187.18 130.65h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M202.25 130.65h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M209.79 130.65h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M216.07 130.65h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M231.15 130.65h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-52") }), _jsx("path", { d: "M238.68 130.65h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-36") }), _jsx("path", { d: "M244.96 130.65h-6.28v7.54h7.54v-7.54h-1.26ZM7.54 136.93H0v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M13.82 136.93H7.54v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-68") }), _jsx("path", { d: "M21.36 136.93h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-63") }), _jsx("path", { d: "M28.89 136.93h-7.54v7.54h7.54v-7.54Z", style: {
|
|
548
|
+
fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#bdbad5',
|
|
549
|
+
} }), _jsx("path", { d: "M36.43 136.93h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-9") }), _jsx("path", { d: "M42.71 136.93h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M50.25 136.93h-7.54v7.54h7.54v-7.54Zm15.07 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M71.6 136.93h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-20") }), _jsx("path", { d: "M79.14 136.93H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-20") }), _jsx("path", { d: "M94.22 136.93h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-20") }), _jsx("path", { d: "M115.57 136.93h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-20") }), _jsx("path", { d: "M123.11 136.93h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M129.39 136.93h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M136.93 136.93h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M152 136.93h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M158.28 136.93h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M187.18 136.93h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M202.25 136.93h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M209.79 136.93h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M216.07 136.93h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M231.15 136.93h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-52") }), _jsx("path", { d: "M238.68 136.93h-7.54v7.54h7.54v-7.54Z", style: {
|
|
550
|
+
fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#b8b8d4',
|
|
551
|
+
} }), _jsx("path", { d: "M244.96 136.93h-6.28v7.54h7.54v-7.54h-1.26Zm-231.14 7.54H7.54v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M21.36 144.47h-7.54v7.54h7.54v-7.54Z", style: {
|
|
552
|
+
fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#6c747c',
|
|
553
|
+
} }), _jsx("path", { d: "M28.89 144.47h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-49") }), _jsx("path", { d: "M36.43 144.47h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-9") }), _jsx("path", { d: "M42.71 144.47h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-8") }), _jsx("path", { d: "M50.25 144.47h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M65.32 144.47h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M71.6 144.47h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M79.14 144.47H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M94.22 144.47h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M115.57 144.47h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-20") }), _jsx("path", { d: "M123.11 144.47h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M129.39 144.47h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M136.93 144.47h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M152 144.47h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M158.28 144.47h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M165.82 144.47h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M187.18 144.47h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M202.25 144.47h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M209.79 144.47h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M216.07 144.47h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M223.61 144.47h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M231.15 144.47h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-8") }), _jsx("path", { d: "M238.68 144.47h-7.54v7.54h7.54v-7.54Z", style: {
|
|
554
|
+
fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#303c3d',
|
|
555
|
+
} }), _jsx("path", { d: "M13.82 152H7.54v7.54h7.54V152h-1.26Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M21.36 152h-7.54v7.54h7.54V152Z", className: "".concat(cls, "-66") }), _jsx("path", { d: "M28.89 152h-7.54v7.54h7.54V152Z", className: "".concat(cls, "-25") }), _jsx("path", { d: "M36.43 152h-7.54v7.54h7.54V152Z", className: "".concat(cls, "-9") }), _jsx("path", { d: "M42.71 152h-6.28v7.54h7.54V152h-1.26Z", className: "".concat(cls, "-8") }), _jsx("path", { d: "M50.25 152h-7.54v7.54h7.54V152Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M65.32 152h-7.54v7.54h7.54V152Zm6.28 0h-6.28v7.54h7.54V152H71.6Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M79.14 152H71.6v7.54h7.54V152Zm7.54 0h-7.54v7.54h7.54V152Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M94.22 152h-7.54v7.54h7.54V152Zm6.28 0h-6.28v7.54h6.28V152Zm7.54 0h-7.54v7.54h7.54V152Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M115.57 152h-7.54v7.54h7.54V152Z", className: "".concat(cls, "-8") }), _jsx("path", { d: "M123.11 152h-7.54v7.54h7.54V152Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M129.39 152h-6.28v7.54h7.54V152h-1.26Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M136.93 152h-7.54v7.54h7.54V152Zm7.54 0h-7.54v7.54h7.54V152Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M152 152h-7.54v7.54H152V152Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M158.28 152h-7.54v7.54h7.54V152Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M165.82 152h-7.54v7.54h7.54V152Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M173.36 152h-7.54v7.54h7.54V152Zm7.54 0h-7.54v7.54h7.54V152Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M187.18 152h-7.54v7.54h7.54V152Zm7.54 0h-7.54v7.54h7.54V152Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M202.25 152h-7.54v7.54h7.54V152Zm7.54 0h-7.54v7.54h7.54V152Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M216.07 152h-7.54v7.54h7.54V152Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M223.61 152h-7.54v7.54h7.54V152Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M231.15 152h-7.54v7.54h7.54V152Z", className: "".concat(cls, "-8") }), _jsx("path", { d: "M238.68 152h-7.54v7.54h7.54V152Z", style: {
|
|
556
|
+
fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#2b3739',
|
|
557
|
+
} }), _jsx("path", { d: "M13.82 159.54H7.54v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M21.36 159.54h-7.54v7.54h7.54v-7.54Z", style: {
|
|
558
|
+
fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#b2b6bd',
|
|
559
|
+
} }), _jsx("path", { d: "M28.89 159.54h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-25") }), _jsx("path", { d: "M36.43 159.54h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-8") }), _jsx("path", { d: "M50.25 159.54h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M65.32 159.54h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M79.14 159.54H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M94.22 159.54h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M115.57 159.54h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M129.39 159.54h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M136.93 159.54h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M152 159.54h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M158.28 159.54h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M165.82 159.54h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M173.36 159.54h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M187.18 159.54h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M202.25 159.54h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M216.07 159.54h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M223.61 159.54h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M231.15 159.54h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-8") }), _jsx("path", { d: "M238.68 159.54h-7.54v7.54h7.54v-7.54Z", style: {
|
|
560
|
+
fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#1f2c2c',
|
|
561
|
+
} }), _jsx("path", { d: "M21.36 165.82h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M28.89 165.82h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-23") }), _jsx("path", { d: "M36.43 165.82h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-25") }), _jsx("path", { d: "M42.71 165.82h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-32") }), _jsx("path", { d: "M50.25 165.82h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-9") }), _jsx("path", { d: "M65.32 165.82h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M79.14 165.82H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M94.22 165.82h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M115.57 165.82h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M129.39 165.82h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M136.93 165.82h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M144.47 165.82h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M152 165.82h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M158.28 165.82h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M165.82 165.82h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M173.36 165.82h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M187.18 165.82h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M202.25 165.82h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M216.07 165.82h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-65") }), _jsx("path", { d: "M223.61 165.82h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-7") }), _jsx("path", { d: "M231.15 165.82h-7.54v7.54h7.54v-7.54Z", style: {
|
|
562
|
+
fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#252e2f',
|
|
563
|
+
} }), _jsx("path", { d: "M21.36 173.36h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M28.89 173.36h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-58") }), _jsx("path", { d: "M36.43 173.36h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-25") }), _jsx("path", { d: "M42.71 173.36h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-32") }), _jsx("path", { d: "M50.25 173.36h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-8") }), _jsx("path", { d: "M65.32 173.36h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M71.6 173.36h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M79.14 173.36H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M94.22 173.36h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M115.57 173.36h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-12") }), _jsx("path", { d: "M123.11 173.36h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M129.39 173.36h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M136.93 173.36h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M152 173.36h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M158.28 173.36h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M165.82 173.36h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M173.36 173.36h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M187.18 173.36h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M202.25 173.36h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M216.07 173.36h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-65") }), _jsx("path", { d: "M223.61 173.36h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-7") }), _jsx("path", { d: "M231.15 173.36h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M28.89 180.9h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M36.43 180.9h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-23") }), _jsx("path", { d: "M42.71 180.9h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-25") }), _jsx("path", { d: "M50.25 180.9h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-32") }), _jsx("path", { d: "M65.32 180.9h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M71.6 180.9h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M79.14 180.9H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M94.22 180.9h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M115.57 180.9h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M129.39 180.9h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M136.93 180.9h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M152 180.9h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M158.28 180.9h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-16") }), _jsx("path", { d: "M165.82 180.9h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M173.36 180.9h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M187.18 180.9h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M202.25 180.9h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M209.79 180.9h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-13") }), _jsx("path", { d: "M216.07 180.9h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-7") }), _jsx("path", { d: "M223.61 180.9h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-62") }), _jsx("path", { d: "M28.89 188.43h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M36.43 188.43h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-58") }), _jsx("path", { d: "M42.71 188.43h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-23") }), _jsx("path", { d: "M50.25 188.43h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-25") }), _jsx("path", { d: "M65.32 188.43h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M71.6 188.43h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M79.14 188.43H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M94.22 188.43h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M115.57 188.43h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M129.39 188.43h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M136.93 188.43h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M152 188.43h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M158.28 188.43h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M165.82 188.43h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M187.18 188.43h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M202.25 188.43h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-13") }), _jsx("path", { d: "M209.79 188.43h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-7") }), _jsx("path", { d: "M216.07 188.43h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-40") }), _jsx("path", { d: "M223.61 188.43h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-62") }), _jsx("path", { d: "M36.43 194.72h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M42.71 194.72h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-58") }), _jsx("path", { d: "M50.25 194.72h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-23") }), _jsx("path", { d: "M65.32 194.72h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-38") }), _jsx("path", { d: "M79.14 194.72H71.6v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M86.68 194.72h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M94.22 194.72h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M115.57 194.72h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M129.39 194.72h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M136.93 194.72h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M152 194.72h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M158.28 194.72h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M187.18 194.72h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-13") }), _jsx("path", { d: "M194.72 194.72h-7.54v7.54h7.54v-7.54Z", style: {
|
|
564
|
+
fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#aa495a',
|
|
565
|
+
} }), _jsx("path", { d: "M202.25 194.72h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-7") }), _jsx("path", { d: "M209.79 194.72h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-40") }), _jsx("path", { d: "M216.07 194.72h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-62") }), _jsx("path", { d: "M42.71 202.25h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-41") }), _jsx("path", { d: "M50.25 202.25h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-58") }), _jsx("path", { d: "M65.32 202.25h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-25") }), _jsx("path", { d: "M71.6 202.25h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-38") }), _jsx("path", { d: "M79.14 202.25H71.6v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-38") }), _jsx("path", { d: "M94.22 202.25h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M115.57 202.25h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M129.39 202.25h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M136.93 202.25h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M152 202.25h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M158.28 202.25h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M165.82 202.25h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-13") }), _jsx("path", { d: "M187.18 202.25h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-2") }), _jsx("path", { d: "M194.72 202.25h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-7") }), _jsx("path", { d: "M202.25 202.25h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-7") }), _jsx("path", { d: "M209.79 202.25h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-62") }), _jsx("path", { d: "M50.25 209.79h-7.54v7.54h7.54v-7.54Zm15.07 7.54h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-41") }), _jsx("path", { d: "M57.79 217.33h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-41") }), _jsx("path", { d: "M65.32 217.33v-7.54h-7.54v7.54h7.54Z", className: "".concat(cls, "-23") }), _jsx("path", { d: "M71.6 209.79h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-25") }), _jsx("path", { d: "M79.14 209.79H71.6v7.54h7.54v-7.54Z", className: "".concat(cls, "-25") }), _jsx("path", { d: "M86.68 209.79h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-32") }), _jsx("path", { d: "M94.22 209.79h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-38") }), _jsx("path", { d: "M115.57 209.79h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M129.39 209.79h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M136.93 209.79h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M152 209.79h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M158.28 209.79h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M165.82 209.79h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-2") }), _jsx("path", { d: "M187.18 209.79h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-40") }), _jsx("path", { d: "M194.72 209.79h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-61") }), _jsx("path", { d: "M202.25 209.79h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M71.6 217.33h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-58") }), _jsx("path", { d: "M79.14 217.33H71.6v7.54h7.54v-7.54Z", className: "".concat(cls, "-58") }), _jsx("path", { d: "M86.68 217.33h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-25") }), _jsx("path", { d: "M94.22 217.33h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-38") }), _jsx("path", { d: "M115.57 217.33h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-7") }), _jsx("path", { d: "M129.39 217.33h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-7") }), _jsx("path", { d: "M136.93 217.33h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-7") }), _jsx("path", { d: "M152 217.33h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-7") }), _jsx("path", { d: "M158.28 217.33h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-7") }), _jsx("path", { d: "M165.82 217.33h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-40") }), _jsx("path", { d: "M180.9 217.33h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M187.18 217.33h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M71.6 223.61h-6.28v7.54h7.54v-7.54H71.6Z", className: "".concat(cls, "-41") }), _jsx("path", { d: "M79.14 223.61H71.6v7.54h7.54v-7.54Z", className: "".concat(cls, "-41") }), _jsx("path", { d: "M86.68 223.61h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-60") }), _jsx("path", { d: "M94.22 223.61h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Z", className: "".concat(cls, "-60") }), _jsx("path", { d: "M108.04 223.61h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-66") }), _jsx("path", { d: "M115.57 223.61h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", style: {
|
|
566
|
+
fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#a4a5a9',
|
|
567
|
+
} }), _jsx("path", { d: "M129.39 223.61h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-33") }), _jsx("path", { d: "M136.93 223.61h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-33") }), _jsx("path", { d: "M152 223.61h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-33") }), _jsx("path", { d: "M158.28 223.61h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-33") }), _jsx("path", { d: "M165.82 223.61h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-61") }), _jsx("path", { d: "M86.68 231.15h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-41") }), _jsx("path", { d: "M94.22 231.15h-7.54v7.54h7.54v-7.54Zm6.28 0h-6.28v7.54h6.28v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-41") }), _jsx("path", { d: "M115.57 231.15h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M129.39 231.15h-6.28v7.54h7.54v-7.54h-1.26Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M136.93 231.15h-7.54v7.54h7.54v-7.54Zm7.54 0h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M152 231.15h-7.54v7.54H152v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M158.28 231.15h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M57.79 21.36h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-50") }), _jsx("path", { d: "M57.79 28.89h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-35") }), _jsx("path", { d: "M57.79 36.43h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-67") }), _jsx("path", { d: "M57.79 43.97h-7.54v6.28h7.54v-6.28Z", className: "".concat(cls, "-11") }), _jsx("path", { d: "M57.79 50.25h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-27") }), _jsx("path", { d: "M57.79 57.79h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-57") }), _jsx("path", { d: "M57.79 65.32h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-57") }), _jsx("path", { d: "M57.79 72.86h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M57.79 79.14h-7.54v7.54h7.54v-7.54Zm0 7.54h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M57.79 94.22h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M57.79 101.75h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M57.79 108.04h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M57.79 115.57h-7.54v7.54h7.54v-7.54Zm0 7.54h-7.54v7.54h7.54v-7.54Zm0 7.54h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M57.79 136.93h-7.54v7.54h7.54v-7.54Zm0 7.54h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M57.79 152h-7.54v7.54h7.54V152Z", className: "".concat(cls, "-15") }), _jsx("path", { d: "M57.79 159.54h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-19") }), _jsx("path", { d: "M57.79 165.82h-7.54v7.54h7.54v-7.54Z", style: {
|
|
568
|
+
fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#212a29',
|
|
569
|
+
} }), _jsx("path", { d: "M57.79 173.36h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-4") }), _jsx("path", { d: "M57.79 180.9h-7.54v7.54h7.54v-7.54Z", style: {
|
|
570
|
+
fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#f1f2f4',
|
|
571
|
+
} }), _jsx("path", { d: "M57.79 188.43h-7.54v7.54h7.54v-7.54Z", style: {
|
|
572
|
+
fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#e6e7e9',
|
|
573
|
+
} }), _jsx("path", { d: "M57.79 194.72h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-25") }), _jsx("path", { d: "M57.79 202.25h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-23") }), _jsx("path", { d: "M57.79 209.79h-7.54v7.54h7.54v-7.54Z", className: "".concat(cls, "-58") })] })));
|
|
574
|
+
}
|
|
575
|
+
function DfxAssetIconFPS(_a) {
|
|
576
|
+
var forceColor = _a.forceColor;
|
|
577
|
+
var sizeContext = useContext(SizeContext);
|
|
578
|
+
return (_jsxs("svg", __assign({ width: SIZE_MAPS[sizeContext], height: SIZE_MAPS[sizeContext], viewBox: "0 0 310 310", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: [_jsx("path", { fill: forceColor ? '#ffffff' : '#2668FC', d: "M31 41h248v229H31z" }), _jsx("path", { fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#000', d: "M46 26h218v15H46zM31 56v199H16V56zM294 56v199h-15V56zM31 41h15v15H31zM31 255h15v15H31zM82 178h16v16H82zM98 162h16v16H98zM114 146h16v16h-16zM130 130h16v16h-16zM146 114h16v16h-16zM162 130h16v16h-16zM178 114h16v16h-16zM194 98h16v16h-16zM210 82h16v16h-16z" }), _jsx("path", { fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#F46184', d: "M82 162h16v16H82zM98 146h16v16H98zM114 130h16v16h-16zM130 114h16v16h-16zM146 98h16v16h-16zM162 114h16v16h-16zM178 98h16v16h-16zM194 82h16v16h-16zM210 66h16v16h-16z" }), _jsx("path", { fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#000', d: "M82 146h16v16H82zM98 130h16v16H98zM114 114h16v16h-16zM130 98h16v16h-16zM146 82h16v16h-16zM162 98h16v16h-16zM178 82h16v16h-16zM194 66h16v16h-16zM226 66h16v16h-16zM210 50h16v16h-16zM264 41h15v15h-15zM264 255h15v15h-15zM46 270h218v15H46z" }), _jsx("path", { fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#fff', d: "M47 202h11v45H47zM58 202h22v11H58zM58 219h12v9H58zM80 219h19v9H80zM108 219h13v9h-13zM132 219h13v9h-13zM131 238h13v9h-13zM142 228h12v10h-12zM166 228h8v10h-8zM183 228h10v9h-10zM216 228h10v19h-10zM235 228h10v19h-10zM254 228h10v19h-10zM202 228h12v9h-12zM174 219h9v9h-9zM193 219h14v9h-14zM216 219h48v9h-48zM193 237h14v10h-14zM174 237h9v10h-9zM108 238h13v9h-13zM80 238h19v9H80zM80 228h8v10h-8zM154 202h12v45h-12zM99 228h9v10h-9zM120 228h11v10h-11z" })] })));
|
|
579
|
+
}
|
|
580
|
+
function DfxAssetIconYLD(_a) {
|
|
581
|
+
var forceColor = _a.forceColor;
|
|
582
|
+
var sizeContext = useContext(SizeContext);
|
|
583
|
+
return (_jsxs("svg", __assign({ width: SIZE_MAPS[sizeContext], height: SIZE_MAPS[sizeContext], viewBox: "0 0 32 32", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: [_jsx("g", __assign({ clipPath: "url(#yld-a)" }, { children: _jsxs("g", __assign({ clipPath: "url(#yld-b)" }, { children: [_jsx("path", { fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#104499', d: "M32 16c0 8.838-7.163 16-16 16S0 24.836 0 16 7.163 0 16 0s16 7.164 16 16" }), _jsx("path", { fill: "#fff", fillRule: "evenodd", d: "m20.716 10.531-6.74 5.99a4.6 4.6 0 0 1-2.717.875 4.642 4.642 0 0 1 0-9.284c2.31 0 3.486 1.307 4.064 2.386l-1.85 1.52c-.467-1.088-1.135-1.584-2.214-1.584a2.322 2.322 0 0 0 0 4.644c.541 0 1.176-.305 1.57-.617l6.144-5.518c1.88-1.483 3.626-1.247 4.695-.843l-2.255 1.86c-.222.17-.452.355-.697.571M11.192 21.47l6.74-5.99a4.6 4.6 0 0 1 2.716-.875 4.642 4.642 0 0 1 0 9.284c-2.311 0-3.487-1.307-4.064-2.385l1.85-1.521c.466 1.088 1.135 1.584 2.214 1.584a2.322 2.322 0 0 0 0-4.644c-.542 0-1.176.305-1.57.617l-6.142 5.518c-1.881 1.483-3.626 1.247-4.695.843l2.255-1.86c.222-.17.452-.355.696-.571", clipRule: "evenodd" })] })) })), _jsxs("defs", { children: [_jsx("clipPath", __assign({ id: "yld-a" }, { children: _jsx("path", { fill: "#fff", d: "M0 0h137v32H0z" }) })), _jsx("clipPath", __assign({ id: "yld-b" }, { children: _jsx("path", { fill: "#fff", d: "M0 0h32v32H0z" }) }))] })] })));
|
|
584
|
+
}
|
|
585
|
+
function DfxAssetIconISLM(_a) {
|
|
586
|
+
var forceColor = _a.forceColor;
|
|
587
|
+
var sizeContext = useContext(SizeContext);
|
|
588
|
+
return (_jsxs("svg", __assign({ width: SIZE_MAPS[sizeContext], height: SIZE_MAPS[sizeContext], viewBox: "0 0 256 256", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, { children: [_jsx("g", __assign({ clipPath: "url(#islm-a)" }, { children: _jsx("path", { fill: forceColor !== null && forceColor !== void 0 ? forceColor : '#04D484', fillRule: "evenodd", d: "M127.999 0c35.346 0 67.348 14.328 90.511 37.49 22.888 22.889 37.147 54.407 37.482 89.251v.073l.004.475.004.705-.008 1.179v.078c-.335 34.843-14.594 66.358-37.482 89.247-23.163 23.162-55.162 37.489-90.511 37.489-35.344 0-67.345-14.327-90.508-37.489C14.328 195.335 0 163.333 0 127.989c0-35.343 14.328-67.34 37.49-90.503C60.655 14.324 92.656 0 128 0Zm73.569 73.563c4.852 0 9.56.64 14.042 1.828-13.201-12.81-31.201-20.698-51.049-20.698-20.244 0-38.571 8.203-51.831 21.467-13.265 13.264-21.468 31.591-21.468 51.834 0 20.243 8.203 38.569 21.468 51.829 13.265 13.265 31.591 21.468 51.831 21.468 19.848 0 37.852-7.889 51.049-20.699a54.517 54.517 0 0 1-14.039 1.829c-15.028 0-28.638-6.093-38.485-15.943-9.85-9.85-15.942-23.46-15.942-38.489 0-15.027 6.092-28.638 15.942-38.488 9.843-9.842 23.449-15.939 38.482-15.939Zm25.659 28.771c-6.568-6.564-15.64-10.627-25.663-10.627s-19.095 4.063-25.663 10.627c-6.568 6.568-10.628 15.641-10.628 25.664 0 10.023 4.063 19.095 10.628 25.663 6.568 6.564 15.64 10.626 25.663 10.626s19.095-4.062 25.663-10.626c6.564-6.568 10.628-15.64 10.628-25.663l-.005-.467c-.12-9.843-4.16-18.733-10.623-25.197Zm-62.67-65.782c11.399 0 22.309 2.086 32.376 5.9-18.85-15.206-42.83-24.311-68.934-24.311-30.334 0-57.802 12.298-77.683 32.175-19.877 19.876-32.175 47.343-32.175 77.678 0 30.338 12.295 57.801 32.175 77.682 19.881 19.877 47.345 32.175 77.683 32.175 26.108 0 50.084-9.105 68.934-24.315-10.067 3.814-20.977 5.9-32.376 5.9-25.25 0-48.115-10.237-64.657-26.783-16.546-16.547-26.783-39.407-26.783-64.655 0-25.249 10.237-48.113 26.782-64.66 16.543-16.55 39.408-26.786 64.658-26.786Z", clipRule: "evenodd" }) })), _jsx("defs", { children: _jsx("clipPath", __assign({ id: "islm-a" }, { children: _jsx("path", { fill: "#fff", d: "M0 0h256v256H0z" }) })) })] })));
|
|
589
|
+
}
|
|
499
590
|
function DfxAssetIconEUR(_a) {
|
|
500
591
|
var forceColor = _a.forceColor;
|
|
501
592
|
var sizeContext = useContext(SizeContext);
|