@cloudtower/icons-react 0.27.1 → 0.27.2
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/ContainerRegistry24BlueIcon.d.ts +4 -0
- package/dist/ContainerRegistry24BlueIcon.js +64 -0
- package/dist/ContainerRegistry24OntintIcon.d.ts +4 -0
- package/dist/ContainerRegistry24OntintIcon.js +25 -0
- package/dist/ContainerRegistry32ColorfulIcon.d.ts +4 -0
- package/dist/ContainerRegistry32ColorfulIcon.js +68 -0
- package/dist/GlobalConfiguration24GradientBlueIcon.d.ts +4 -0
- package/dist/GlobalConfiguration24GradientBlueIcon.js +51 -0
- package/dist/GlobalConfiguration24OntintIcon.d.ts +4 -0
- package/dist/GlobalConfiguration24OntintIcon.js +27 -0
- package/dist/esm/ContainerRegistry24BlueIcon.d.ts +4 -0
- package/dist/esm/ContainerRegistry24BlueIcon.js +64 -0
- package/dist/esm/ContainerRegistry24OntintIcon.d.ts +4 -0
- package/dist/esm/ContainerRegistry24OntintIcon.js +25 -0
- package/dist/esm/ContainerRegistry32ColorfulIcon.d.ts +4 -0
- package/dist/esm/ContainerRegistry32ColorfulIcon.js +68 -0
- package/dist/esm/GlobalConfiguration24GradientBlueIcon.d.ts +4 -0
- package/dist/esm/GlobalConfiguration24GradientBlueIcon.js +51 -0
- package/dist/esm/GlobalConfiguration24OntintIcon.d.ts +4 -0
- package/dist/esm/GlobalConfiguration24OntintIcon.js +27 -0
- package/dist/esm/index.d.ts +5 -0
- package/dist/esm/index.js +5 -0
- package/dist/image-types.d.ts +1 -1
- package/dist/index.d.ts +5 -0
- package/dist/index.js +5 -0
- package/package.json +3 -3
@@ -0,0 +1,64 @@
|
|
1
|
+
const React = require("react");
|
2
|
+
function ContainerRegistry24BlueIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}) {
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
+
width: 24,
|
9
|
+
height: 24,
|
10
|
+
fill: "none",
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
12
|
+
"aria-labelledby": titleId
|
13
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
14
|
+
id: titleId
|
15
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
16
|
+
d: "M11.25 1.462a1.5 1.5 0 011.5 0l8.002 4.62a1.5 1.5 0 01.75 1.298v4.12a.5.5 0 01-1 0V7.38a.5.5 0 00-.25-.433l-8.002-4.62a.5.5 0 00-.5 0L3.75 6.948a.5.5 0 00-.25.433v2.224a1.25 1.25 0 11-1 0V7.38a1.5 1.5 0 01.75-1.299l8.001-4.62z",
|
17
|
+
fill: "url(#paint0_radial_ContainerRegistry24BlueIcon_13666_78000)"
|
18
|
+
}), /*#__PURE__*/React.createElement("path", {
|
19
|
+
d: "M2.999 13a.5.5 0 01.5.5v3.12a.5.5 0 00.25.432l8.001 4.62a.5.5 0 00.5 0l8.002-4.62a.5.5 0 00.25-.433v-1.223a1.25 1.25 0 111 0v1.223a1.5 1.5 0 01-.75 1.3l-8.002 4.619a1.5 1.5 0 01-1.5 0l-8.001-4.62a1.5 1.5 0 01-.75-1.299v-3.118a.5.5 0 01.5-.5z",
|
20
|
+
fill: "url(#paint1_radial_ContainerRegistry24BlueIcon_13666_78000)"
|
21
|
+
}), /*#__PURE__*/React.createElement("path", {
|
22
|
+
fillRule: "evenodd",
|
23
|
+
clipRule: "evenodd",
|
24
|
+
d: "M12.45 5.152a.9.9 0 00-.9 0L6.121 8.286a.5.5 0 00-.25.433v6.27a.9.9 0 00.45.779l5.43 3.134a.5.5 0 00.5 0l5.428-3.134a.9.9 0 00.45-.78V8.72a.5.5 0 00-.25-.433L12.45 5.152zm-.95 7.106L6.871 9.585v5.346l4.63 2.672v-5.345zm5.63 2.673l-4.63 2.672v-5.345l4.63-2.673v5.346zm-.5-6.212L12 11.392 7.371 8.719l4.63-2.672 4.628 2.672z",
|
25
|
+
fill: "url(#paint2_radial_ContainerRegistry24BlueIcon_13666_78000)"
|
26
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
27
|
+
id: "paint0_radial_ContainerRegistry24BlueIcon_13666_78000",
|
28
|
+
cx: 0,
|
29
|
+
cy: 0,
|
30
|
+
r: 1,
|
31
|
+
gradientUnits: "userSpaceOnUse",
|
32
|
+
gradientTransform: "matrix(20.50247 -21.47816 21.45494 20.4803 1.749 22.739)"
|
33
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
34
|
+
stopColor: "#5BCAFF"
|
35
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
36
|
+
offset: 1,
|
37
|
+
stopColor: "#06F"
|
38
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
39
|
+
id: "paint1_radial_ContainerRegistry24BlueIcon_13666_78000",
|
40
|
+
cx: 0,
|
41
|
+
cy: 0,
|
42
|
+
r: 1,
|
43
|
+
gradientUnits: "userSpaceOnUse",
|
44
|
+
gradientTransform: "matrix(20.50247 -21.47816 21.45494 20.4803 1.749 22.739)"
|
45
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
46
|
+
stopColor: "#5BCAFF"
|
47
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
48
|
+
offset: 1,
|
49
|
+
stopColor: "#06F"
|
50
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
51
|
+
id: "paint2_radial_ContainerRegistry24BlueIcon_13666_78000",
|
52
|
+
cx: 0,
|
53
|
+
cy: 0,
|
54
|
+
r: 1,
|
55
|
+
gradientUnits: "userSpaceOnUse",
|
56
|
+
gradientTransform: "matrix(20.50247 -21.47816 21.45494 20.4803 1.749 22.739)"
|
57
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
58
|
+
stopColor: "#5BCAFF"
|
59
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
60
|
+
offset: 1,
|
61
|
+
stopColor: "#06F"
|
62
|
+
}))));
|
63
|
+
}
|
64
|
+
module.exports = ContainerRegistry24BlueIcon;
|
@@ -0,0 +1,25 @@
|
|
1
|
+
const React = require("react");
|
2
|
+
function ContainerRegistry24OntintIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}) {
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
+
width: 24,
|
9
|
+
height: 24,
|
10
|
+
fill: "none",
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
12
|
+
"aria-labelledby": titleId
|
13
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
14
|
+
id: titleId
|
15
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
16
|
+
d: "M11.25 1.462a1.5 1.5 0 011.5 0l8.002 4.62a1.5 1.5 0 01.75 1.298v4.12a.5.5 0 01-1 0V7.38a.5.5 0 00-.25-.433l-8.002-4.62a.5.5 0 00-.5 0L3.75 6.948a.5.5 0 00-.25.433v2.224a1.25 1.25 0 11-1 0V7.38a1.5 1.5 0 01.75-1.299l8.001-4.62zM2.999 13a.5.5 0 01.5.5v3.12a.5.5 0 00.25.432l8.001 4.62a.5.5 0 00.5 0l8.002-4.62a.5.5 0 00.25-.433v-1.223a1.25 1.25 0 111 0v1.223a1.5 1.5 0 01-.75 1.3l-8.002 4.619a1.5 1.5 0 01-1.5 0l-8.001-4.62a1.5 1.5 0 01-.75-1.299v-3.118a.5.5 0 01.5-.5z",
|
17
|
+
fill: "#fff"
|
18
|
+
}), /*#__PURE__*/React.createElement("path", {
|
19
|
+
fillRule: "evenodd",
|
20
|
+
clipRule: "evenodd",
|
21
|
+
d: "M12.45 5.152a.9.9 0 00-.9 0L6.121 8.286a.5.5 0 00-.25.433v6.27a.9.9 0 00.45.779l5.43 3.134a.5.5 0 00.5 0l5.428-3.134a.9.9 0 00.45-.78V8.72a.5.5 0 00-.25-.433L12.45 5.152zm-.95 7.106L6.871 9.585v5.346l4.63 2.672v-5.345zm5.63 2.673l-4.63 2.672v-5.345l4.63-2.673v5.346zm-.5-6.212L12 11.392 7.371 8.719l4.63-2.672 4.628 2.672z",
|
22
|
+
fill: "#fff"
|
23
|
+
}));
|
24
|
+
}
|
25
|
+
module.exports = ContainerRegistry24OntintIcon;
|
@@ -0,0 +1,68 @@
|
|
1
|
+
const React = require("react");
|
2
|
+
function ContainerRegistry32ColorfulIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}) {
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
+
width: 32,
|
9
|
+
height: 32,
|
10
|
+
fill: "none",
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
12
|
+
"aria-labelledby": titleId
|
13
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
14
|
+
id: titleId
|
15
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
16
|
+
opacity: 0.3,
|
17
|
+
d: "M15.5 7.289a1 1 0 011 0l6.794 3.922a1 1 0 01.5.866v7.846a1 1 0 01-.5.866L16.5 24.71a1 1 0 01-1 0L8.706 20.79a1 1 0 01-.5-.866v-7.846a1 1 0 01.5-.866L15.5 7.29z",
|
18
|
+
fill: "#5A62FF"
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
20
|
+
d: "M16.75 3.08a1.5 1.5 0 00-1.5 0L4.99 9.003a1.5 1.5 0 00-.75 1.299v2.779a1.5 1.5 0 101 .009v-2.788a.5.5 0 01.25-.433L15.75 3.946a.5.5 0 01.5 0l10.258 5.923a.5.5 0 01.25.433v4.194a.5.5 0 101 0v-4.194a1.5 1.5 0 00-.75-1.3L16.75 3.08z",
|
21
|
+
fill: "url(#paint0_radial_ContainerRegistry32ColorfulIcon_13666_77994)"
|
22
|
+
}), /*#__PURE__*/React.createElement("path", {
|
23
|
+
d: "M5.241 18.498a.5.5 0 10-1 0v3.424a1.5 1.5 0 00.75 1.3l10.259 5.922a1.5 1.5 0 001.5 0l10.258-5.923a1.5 1.5 0 00.75-1.299v-2.015a1.5 1.5 0 10-1 .015v2a.5.5 0 01-.25.433L16.25 28.278a.5.5 0 01-.5 0L5.49 22.355a.5.5 0 01-.25-.433v-3.424z",
|
24
|
+
fill: "url(#paint1_radial_ContainerRegistry32ColorfulIcon_13666_77994)"
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
26
|
+
fillRule: "evenodd",
|
27
|
+
clipRule: "evenodd",
|
28
|
+
d: "M16.45 6.682a.9.9 0 00-.9 0l-7.594 4.385a.5.5 0 00-.25.433v8.769a.9.9 0 00.45.78l7.594 4.384a.5.5 0 00.5 0l7.594-4.385a.9.9 0 00.45-.78V11.5a.5.5 0 00-.25-.433L16.45 6.682zm-.95 9.123l-6.794-3.487v7.893l6.794 3.923v-8.329zm7.794 4.406L16.5 24.134v-8.329l6.794-3.487v7.893zm-.545-8.737L16 14.938 9.25 11.474 16 7.577l6.75 3.897z",
|
29
|
+
fill: "url(#paint2_radial_ContainerRegistry32ColorfulIcon_13666_77994)"
|
30
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
31
|
+
id: "paint0_radial_ContainerRegistry32ColorfulIcon_13666_77994",
|
32
|
+
cx: 0,
|
33
|
+
cy: 0,
|
34
|
+
r: 1,
|
35
|
+
gradientUnits: "userSpaceOnUse",
|
36
|
+
gradientTransform: "rotate(-46.298 35.932 10.897) scale(36.9195 36.8816)"
|
37
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
38
|
+
stopColor: "#6B53FF"
|
39
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
40
|
+
offset: 1,
|
41
|
+
stopColor: "#4081FF"
|
42
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
43
|
+
id: "paint1_radial_ContainerRegistry32ColorfulIcon_13666_77994",
|
44
|
+
cx: 0,
|
45
|
+
cy: 0,
|
46
|
+
r: 1,
|
47
|
+
gradientUnits: "userSpaceOnUse",
|
48
|
+
gradientTransform: "rotate(-46.298 35.932 10.897) scale(36.9195 36.8816)"
|
49
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
50
|
+
stopColor: "#6B53FF"
|
51
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
52
|
+
offset: 1,
|
53
|
+
stopColor: "#4081FF"
|
54
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
55
|
+
id: "paint2_radial_ContainerRegistry32ColorfulIcon_13666_77994",
|
56
|
+
cx: 0,
|
57
|
+
cy: 0,
|
58
|
+
r: 1,
|
59
|
+
gradientUnits: "userSpaceOnUse",
|
60
|
+
gradientTransform: "rotate(-46.298 35.932 10.897) scale(36.9195 36.8816)"
|
61
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
62
|
+
stopColor: "#6B53FF"
|
63
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
64
|
+
offset: 1,
|
65
|
+
stopColor: "#4081FF"
|
66
|
+
}))));
|
67
|
+
}
|
68
|
+
module.exports = ContainerRegistry32ColorfulIcon;
|
@@ -0,0 +1,51 @@
|
|
1
|
+
const React = require("react");
|
2
|
+
function GlobalConfiguration24GradientBlueIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}) {
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
+
width: 24,
|
9
|
+
height: 24,
|
10
|
+
fill: "none",
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
12
|
+
"aria-labelledby": titleId
|
13
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
14
|
+
id: titleId
|
15
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
16
|
+
fillRule: "evenodd",
|
17
|
+
clipRule: "evenodd",
|
18
|
+
d: "M2.416 5.526c0-.792.642-1.434 1.433-1.434H20.15c.792 0 1.434.642 1.434 1.434v12.948c0 .792-.642 1.434-1.434 1.434H3.85a1.433 1.433 0 01-1.434-1.434V5.526zm1.433-.503a.502.502 0 00-.502.503v2.74h17.305v-2.74a.502.502 0 00-.502-.503H3.85zm16.803 4.174H3.347v9.277c0 .278.225.503.502.503H20.15a.502.502 0 00.502-.503V9.197zM5.568 6.69a.59.59 0 11-1.18 0 .59.59 0 011.18 0zm1.335.59a.59.59 0 100-1.18.59.59 0 000 1.18zm2.516-.59a.59.59 0 11-1.18 0 .59.59 0 011.18 0z",
|
19
|
+
fill: "url(#paint0_radial_GlobalConfiguration24GradientBlueIcon_3293_191198)"
|
20
|
+
}), /*#__PURE__*/React.createElement("path", {
|
21
|
+
fillRule: "evenodd",
|
22
|
+
clipRule: "evenodd",
|
23
|
+
d: "M11.673 10.086h.658c.043 0 .093 0 .138.003a.566.566 0 01.513.453c.01.044.016.095.021.138l.001.008.048.383c.116.04.23.087.339.14l.311-.242c.034-.026.075-.057.112-.082a.565.565 0 01.683.043c.034.029.07.064.1.095l.466.465c.03.03.066.066.095.1a.565.565 0 01.043.683 1.837 1.837 0 01-.083.112l-.242.312c.053.11.1.223.14.339l.392.049c.043.005.093.011.137.02a.566.566 0 01.453.513c.004.045.004.096.004.14v.657c0 .043 0 .094-.004.138a.565.565 0 01-.453.513 1.833 1.833 0 01-.137.021l-.391.05c-.04.115-.088.229-.14.338l.241.312c.027.034.058.074.083.111a.566.566 0 01-.043.683c-.029.035-.065.07-.095.1l-.465.466c-.031.03-.067.066-.1.096a.566.566 0 01-.683.043c-.039-.026-.079-.057-.113-.083l-.311-.243c-.11.053-.223.1-.34.141l-.048.391c-.005.043-.012.093-.02.137a.566.566 0 01-.513.453c-.046.004-.096.004-.14.004h-.657c-.043 0-.094 0-.139-.003a.566.566 0 01-.513-.453c-.009-.045-.015-.095-.02-.138l-.05-.391a3.17 3.17 0 01-.338-.14l-.312.242c-.034.026-.074.057-.111.082a.565.565 0 01-.683-.043c-.035-.029-.07-.064-.101-.095l-.465-.465a1.836 1.836 0 01-.096-.1.566.566 0 01-.043-.683c.025-.038.056-.078.083-.112l.242-.312c-.053-.11-.1-.223-.14-.339l-.384-.048h-.008a1.829 1.829 0 01-.137-.021.565.565 0 01-.453-.513c-.003-.045-.003-.096-.003-.14v-.649-.008c0-.043 0-.094.003-.139a.566.566 0 01.453-.513c.044-.009.094-.015.137-.02l.008-.001.384-.048c.04-.117.087-.23.14-.34l-.237-.304-.005-.007a1.867 1.867 0 01-.082-.111.566.566 0 01.043-.683c.028-.035.064-.07.095-.101a.62.62 0 00.005-.006l.454-.453.006-.006c.03-.03.066-.066.1-.096a.566.566 0 01.683-.042 1.806 1.806 0 01.118.087l.306.237c.11-.053.222-.1.338-.14l.048-.383.001-.008c.006-.043.012-.094.021-.137a.566.566 0 01.513-.453c.045-.004.096-.004.139-.004zm1.305 1.011l.052-.007-.052.007zm-1.261-.284l-.046.365-.002.016c-.006.055-.018.157-.062.247a.553.553 0 01-.3.274c-.033.014-.072.027-.108.04l-.006.002c-.091.032-.18.069-.266.11l-.006.003c-.034.017-.071.035-.105.049a.551.551 0 01-.406.018.762.762 0 01-.23-.141l-.29-.226-.404.403.226.29.01.013c.034.043.098.124.13.22a.552.552 0 01-.017.405c-.014.033-.033.07-.05.104l-.002.006a2.445 2.445 0 00-.11.266l-.002.006-.04.109a.551.551 0 01-.274.3c-.09.043-.193.055-.248.061l-.016.002-.364.046v.57l.364.045.016.002c.055.007.158.019.248.063a.552.552 0 01.274.299l.04.109.002.006c.031.09.068.18.11.266l.003.005c.016.035.035.072.049.105a.552.552 0 01.018.406.762.762 0 01-.131.219l-.01.012-.226.29.403.404.29-.226.013-.01c.043-.034.124-.098.219-.13a.551.551 0 01.405.017c.034.014.071.032.105.049l.006.003c.086.041.175.078.266.11l.006.002c.036.012.075.026.109.04a.552.552 0 01.3.274c.043.09.055.192.061.247l.002.016.046.365h.57l.045-.365.002-.016c.007-.055.018-.157.063-.247a.552.552 0 01.299-.274c.033-.014.072-.027.108-.04l.006-.002a2.47 2.47 0 00.266-.11l.006-.003c.034-.017.072-.035.105-.049a.551.551 0 01.406-.018.762.762 0 01.231.141l.29.226.403-.403-.225-.29-.01-.013a.763.763 0 01-.13-.22.553.553 0 01.017-.405c.014-.033.032-.07.049-.105l.002-.005c.042-.086.08-.175.11-.266l.003-.006c.012-.036.026-.076.04-.109a.551.551 0 01.274-.3c.09-.043.192-.055.247-.062.006 0 .011 0 .016-.002l.364-.045v-.57l-.364-.046c-.005 0-.01 0-.016-.002-.055-.006-.158-.018-.247-.062a.55.55 0 01-.274-.3 2.202 2.202 0 01-.04-.108l-.002-.006a2.443 2.443 0 00-.11-.266l-.003-.005a2.299 2.299 0 01-.05-.105.553.553 0 01-.018-.406c.033-.095.098-.176.132-.219a1.28 1.28 0 00.01-.012l.225-.29-.403-.404-.29.226a.762.762 0 01-.232.14.551.551 0 01-.405-.017 2.2 2.2 0 01-.105-.049l-.006-.003a2.464 2.464 0 00-.266-.11l-.006-.002c-.036-.013-.075-.026-.108-.04a.553.553 0 01-.3-.274c-.044-.09-.055-.192-.062-.247l-.002-.016-.045-.365h-.57zm.285 2.546a.727.727 0 100 1.454.727.727 0 000-1.454zm-1.455.727a1.454 1.454 0 112.91 0 1.454 1.454 0 01-2.91 0z",
|
24
|
+
fill: "url(#paint1_radial_GlobalConfiguration24GradientBlueIcon_3293_191198)"
|
25
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
26
|
+
id: "paint0_radial_GlobalConfiguration24GradientBlueIcon_3293_191198",
|
27
|
+
cx: 0,
|
28
|
+
cy: 0,
|
29
|
+
r: 1,
|
30
|
+
gradientUnits: "userSpaceOnUse",
|
31
|
+
gradientTransform: "matrix(19.16749 -15.81518 15.52733 18.81861 2.416 19.908)"
|
32
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
33
|
+
stopColor: "#5BCAFF"
|
34
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
35
|
+
offset: 1,
|
36
|
+
stopColor: "#06F"
|
37
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
38
|
+
id: "paint1_radial_GlobalConfiguration24GradientBlueIcon_3293_191198",
|
39
|
+
cx: 0,
|
40
|
+
cy: 0,
|
41
|
+
r: 1,
|
42
|
+
gradientUnits: "userSpaceOnUse",
|
43
|
+
gradientTransform: "matrix(19.16749 -15.81518 15.52733 18.81861 2.416 19.908)"
|
44
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
45
|
+
stopColor: "#5BCAFF"
|
46
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
47
|
+
offset: 1,
|
48
|
+
stopColor: "#06F"
|
49
|
+
}))));
|
50
|
+
}
|
51
|
+
module.exports = GlobalConfiguration24GradientBlueIcon;
|
@@ -0,0 +1,27 @@
|
|
1
|
+
const React = require("react");
|
2
|
+
function GlobalConfiguration24OntintIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}) {
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
+
width: 24,
|
9
|
+
height: 24,
|
10
|
+
fill: "none",
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
12
|
+
"aria-labelledby": titleId
|
13
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
14
|
+
id: titleId
|
15
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
16
|
+
fillRule: "evenodd",
|
17
|
+
clipRule: "evenodd",
|
18
|
+
d: "M2.416 5.526c0-.792.642-1.434 1.433-1.434H20.15c.792 0 1.434.642 1.434 1.434v12.948c0 .792-.642 1.434-1.434 1.434H3.85a1.433 1.433 0 01-1.434-1.434V5.526zm1.433-.503a.502.502 0 00-.502.503v2.74h17.305v-2.74a.502.502 0 00-.502-.503H3.85zm16.803 4.174H3.347v9.277c0 .278.225.503.502.503H20.15a.502.502 0 00.502-.503V9.197zM5.568 6.69a.59.59 0 11-1.18 0 .59.59 0 011.18 0zm1.335.59a.59.59 0 100-1.18.59.59 0 000 1.18zm2.516-.59a.59.59 0 11-1.18 0 .59.59 0 011.18 0z",
|
19
|
+
fill: "#fff"
|
20
|
+
}), /*#__PURE__*/React.createElement("path", {
|
21
|
+
fillRule: "evenodd",
|
22
|
+
clipRule: "evenodd",
|
23
|
+
d: "M11.673 10.086h.658c.043 0 .093 0 .138.003a.566.566 0 01.513.453c.01.044.016.095.021.138l.001.008.048.383c.116.04.23.087.339.14l.311-.242c.034-.026.075-.057.112-.082a.565.565 0 01.683.043c.034.029.07.064.1.095l.466.465c.03.03.066.066.095.1a.565.565 0 01.043.683 1.837 1.837 0 01-.083.112l-.242.312c.053.11.1.223.14.339l.392.049c.043.005.093.011.137.02a.566.566 0 01.453.513c.004.045.004.096.004.14v.657c0 .043 0 .094-.004.138a.565.565 0 01-.453.513 1.833 1.833 0 01-.137.021l-.391.05c-.04.115-.088.229-.14.338l.241.312c.027.034.058.074.083.111a.566.566 0 01-.043.683c-.029.035-.065.07-.095.1l-.465.466c-.031.03-.067.066-.1.096a.566.566 0 01-.683.043c-.039-.026-.079-.057-.113-.083l-.311-.243c-.11.053-.223.1-.34.141l-.048.391c-.005.043-.012.093-.02.137a.566.566 0 01-.513.453c-.046.004-.096.004-.14.004h-.657c-.043 0-.094 0-.139-.003a.566.566 0 01-.513-.453c-.009-.045-.015-.095-.02-.138l-.05-.391a3.17 3.17 0 01-.338-.14l-.312.242c-.034.026-.074.057-.111.082a.565.565 0 01-.683-.043c-.035-.029-.07-.064-.101-.095l-.465-.465a1.836 1.836 0 01-.096-.1.566.566 0 01-.043-.683c.025-.038.056-.078.083-.112l.242-.312c-.053-.11-.1-.223-.14-.339l-.384-.048h-.008a1.829 1.829 0 01-.137-.021.565.565 0 01-.453-.513c-.003-.045-.003-.096-.003-.14v-.649-.008c0-.043 0-.094.003-.139a.566.566 0 01.453-.513c.044-.009.094-.015.137-.02l.008-.001.384-.048c.04-.117.087-.23.14-.34l-.237-.304-.005-.007a1.867 1.867 0 01-.082-.111.566.566 0 01.043-.683c.028-.035.064-.07.095-.101a.62.62 0 00.005-.006l.454-.453.006-.006c.03-.03.066-.066.1-.096a.566.566 0 01.683-.042 1.806 1.806 0 01.118.087l.306.237c.11-.053.222-.1.338-.14l.048-.383.001-.008c.006-.043.012-.094.021-.137a.566.566 0 01.513-.453c.045-.004.096-.004.139-.004zm1.305 1.011l.052-.007-.052.007zm-1.261-.284l-.046.365-.002.016c-.006.055-.018.157-.062.247a.553.553 0 01-.3.274c-.033.014-.072.027-.108.04l-.006.002c-.091.032-.18.069-.266.11l-.006.003c-.034.017-.071.035-.105.049a.551.551 0 01-.406.018.762.762 0 01-.23-.141l-.29-.226-.404.403.226.29.01.013c.034.043.098.124.13.22a.552.552 0 01-.017.405c-.014.033-.033.07-.05.104l-.002.006a2.445 2.445 0 00-.11.266l-.002.006-.04.109a.551.551 0 01-.274.3c-.09.043-.193.055-.248.061l-.016.002-.364.046v.57l.364.045.016.002c.055.007.158.019.248.063a.552.552 0 01.274.299l.04.109.002.006c.031.09.068.18.11.266l.003.005c.016.035.035.072.049.105a.552.552 0 01.018.406.762.762 0 01-.131.219l-.01.012-.226.29.403.404.29-.226.013-.01c.043-.034.124-.098.219-.13a.551.551 0 01.405.017c.034.014.071.032.105.049l.006.003c.086.041.175.078.266.11l.006.002c.036.012.075.026.109.04a.552.552 0 01.3.274c.043.09.055.192.061.247l.002.016.046.365h.57l.045-.365.002-.016c.007-.055.018-.157.063-.247a.552.552 0 01.299-.274c.033-.014.072-.027.108-.04l.006-.002a2.47 2.47 0 00.266-.11l.006-.003c.034-.017.072-.035.105-.049a.551.551 0 01.406-.018.762.762 0 01.231.141l.29.226.403-.403-.225-.29-.01-.013a.763.763 0 01-.13-.22.553.553 0 01.017-.405c.014-.033.032-.07.049-.105l.002-.005c.042-.086.08-.175.11-.266l.003-.006c.012-.036.026-.076.04-.109a.551.551 0 01.274-.3c.09-.043.192-.055.247-.062.006 0 .011 0 .016-.002l.364-.045v-.57l-.364-.046c-.005 0-.01 0-.016-.002-.055-.006-.158-.018-.247-.062a.55.55 0 01-.274-.3 2.202 2.202 0 01-.04-.108l-.002-.006a2.443 2.443 0 00-.11-.266l-.003-.005a2.299 2.299 0 01-.05-.105.553.553 0 01-.018-.406c.033-.095.098-.176.132-.219a1.28 1.28 0 00.01-.012l.225-.29-.403-.404-.29.226a.762.762 0 01-.232.14.551.551 0 01-.405-.017 2.2 2.2 0 01-.105-.049l-.006-.003a2.464 2.464 0 00-.266-.11l-.006-.002c-.036-.013-.075-.026-.108-.04a.553.553 0 01-.3-.274c-.044-.09-.055-.192-.062-.247l-.002-.016-.045-.365h-.57zm.285 2.546a.727.727 0 100 1.454.727.727 0 000-1.454zm-1.455.727a1.454 1.454 0 112.91 0 1.454 1.454 0 01-2.91 0z",
|
24
|
+
fill: "#fff"
|
25
|
+
}));
|
26
|
+
}
|
27
|
+
module.exports = GlobalConfiguration24OntintIcon;
|
@@ -0,0 +1,64 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function ContainerRegistry24BlueIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}) {
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
+
width: 24,
|
9
|
+
height: 24,
|
10
|
+
fill: "none",
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
12
|
+
"aria-labelledby": titleId
|
13
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
14
|
+
id: titleId
|
15
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
16
|
+
d: "M11.25 1.462a1.5 1.5 0 011.5 0l8.002 4.62a1.5 1.5 0 01.75 1.298v4.12a.5.5 0 01-1 0V7.38a.5.5 0 00-.25-.433l-8.002-4.62a.5.5 0 00-.5 0L3.75 6.948a.5.5 0 00-.25.433v2.224a1.25 1.25 0 11-1 0V7.38a1.5 1.5 0 01.75-1.299l8.001-4.62z",
|
17
|
+
fill: "url(#paint0_radial_ContainerRegistry24BlueIcon_13666_78000)"
|
18
|
+
}), /*#__PURE__*/React.createElement("path", {
|
19
|
+
d: "M2.999 13a.5.5 0 01.5.5v3.12a.5.5 0 00.25.432l8.001 4.62a.5.5 0 00.5 0l8.002-4.62a.5.5 0 00.25-.433v-1.223a1.25 1.25 0 111 0v1.223a1.5 1.5 0 01-.75 1.3l-8.002 4.619a1.5 1.5 0 01-1.5 0l-8.001-4.62a1.5 1.5 0 01-.75-1.299v-3.118a.5.5 0 01.5-.5z",
|
20
|
+
fill: "url(#paint1_radial_ContainerRegistry24BlueIcon_13666_78000)"
|
21
|
+
}), /*#__PURE__*/React.createElement("path", {
|
22
|
+
fillRule: "evenodd",
|
23
|
+
clipRule: "evenodd",
|
24
|
+
d: "M12.45 5.152a.9.9 0 00-.9 0L6.121 8.286a.5.5 0 00-.25.433v6.27a.9.9 0 00.45.779l5.43 3.134a.5.5 0 00.5 0l5.428-3.134a.9.9 0 00.45-.78V8.72a.5.5 0 00-.25-.433L12.45 5.152zm-.95 7.106L6.871 9.585v5.346l4.63 2.672v-5.345zm5.63 2.673l-4.63 2.672v-5.345l4.63-2.673v5.346zm-.5-6.212L12 11.392 7.371 8.719l4.63-2.672 4.628 2.672z",
|
25
|
+
fill: "url(#paint2_radial_ContainerRegistry24BlueIcon_13666_78000)"
|
26
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
27
|
+
id: "paint0_radial_ContainerRegistry24BlueIcon_13666_78000",
|
28
|
+
cx: 0,
|
29
|
+
cy: 0,
|
30
|
+
r: 1,
|
31
|
+
gradientUnits: "userSpaceOnUse",
|
32
|
+
gradientTransform: "matrix(20.50247 -21.47816 21.45494 20.4803 1.749 22.739)"
|
33
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
34
|
+
stopColor: "#5BCAFF"
|
35
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
36
|
+
offset: 1,
|
37
|
+
stopColor: "#06F"
|
38
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
39
|
+
id: "paint1_radial_ContainerRegistry24BlueIcon_13666_78000",
|
40
|
+
cx: 0,
|
41
|
+
cy: 0,
|
42
|
+
r: 1,
|
43
|
+
gradientUnits: "userSpaceOnUse",
|
44
|
+
gradientTransform: "matrix(20.50247 -21.47816 21.45494 20.4803 1.749 22.739)"
|
45
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
46
|
+
stopColor: "#5BCAFF"
|
47
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
48
|
+
offset: 1,
|
49
|
+
stopColor: "#06F"
|
50
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
51
|
+
id: "paint2_radial_ContainerRegistry24BlueIcon_13666_78000",
|
52
|
+
cx: 0,
|
53
|
+
cy: 0,
|
54
|
+
r: 1,
|
55
|
+
gradientUnits: "userSpaceOnUse",
|
56
|
+
gradientTransform: "matrix(20.50247 -21.47816 21.45494 20.4803 1.749 22.739)"
|
57
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
58
|
+
stopColor: "#5BCAFF"
|
59
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
60
|
+
offset: 1,
|
61
|
+
stopColor: "#06F"
|
62
|
+
}))));
|
63
|
+
}
|
64
|
+
export default ContainerRegistry24BlueIcon;
|
@@ -0,0 +1,25 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function ContainerRegistry24OntintIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}) {
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
+
width: 24,
|
9
|
+
height: 24,
|
10
|
+
fill: "none",
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
12
|
+
"aria-labelledby": titleId
|
13
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
14
|
+
id: titleId
|
15
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
16
|
+
d: "M11.25 1.462a1.5 1.5 0 011.5 0l8.002 4.62a1.5 1.5 0 01.75 1.298v4.12a.5.5 0 01-1 0V7.38a.5.5 0 00-.25-.433l-8.002-4.62a.5.5 0 00-.5 0L3.75 6.948a.5.5 0 00-.25.433v2.224a1.25 1.25 0 11-1 0V7.38a1.5 1.5 0 01.75-1.299l8.001-4.62zM2.999 13a.5.5 0 01.5.5v3.12a.5.5 0 00.25.432l8.001 4.62a.5.5 0 00.5 0l8.002-4.62a.5.5 0 00.25-.433v-1.223a1.25 1.25 0 111 0v1.223a1.5 1.5 0 01-.75 1.3l-8.002 4.619a1.5 1.5 0 01-1.5 0l-8.001-4.62a1.5 1.5 0 01-.75-1.299v-3.118a.5.5 0 01.5-.5z",
|
17
|
+
fill: "#fff"
|
18
|
+
}), /*#__PURE__*/React.createElement("path", {
|
19
|
+
fillRule: "evenodd",
|
20
|
+
clipRule: "evenodd",
|
21
|
+
d: "M12.45 5.152a.9.9 0 00-.9 0L6.121 8.286a.5.5 0 00-.25.433v6.27a.9.9 0 00.45.779l5.43 3.134a.5.5 0 00.5 0l5.428-3.134a.9.9 0 00.45-.78V8.72a.5.5 0 00-.25-.433L12.45 5.152zm-.95 7.106L6.871 9.585v5.346l4.63 2.672v-5.345zm5.63 2.673l-4.63 2.672v-5.345l4.63-2.673v5.346zm-.5-6.212L12 11.392 7.371 8.719l4.63-2.672 4.628 2.672z",
|
22
|
+
fill: "#fff"
|
23
|
+
}));
|
24
|
+
}
|
25
|
+
export default ContainerRegistry24OntintIcon;
|
@@ -0,0 +1,68 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function ContainerRegistry32ColorfulIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}) {
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
+
width: 32,
|
9
|
+
height: 32,
|
10
|
+
fill: "none",
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
12
|
+
"aria-labelledby": titleId
|
13
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
14
|
+
id: titleId
|
15
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
16
|
+
opacity: 0.3,
|
17
|
+
d: "M15.5 7.289a1 1 0 011 0l6.794 3.922a1 1 0 01.5.866v7.846a1 1 0 01-.5.866L16.5 24.71a1 1 0 01-1 0L8.706 20.79a1 1 0 01-.5-.866v-7.846a1 1 0 01.5-.866L15.5 7.29z",
|
18
|
+
fill: "#5A62FF"
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
20
|
+
d: "M16.75 3.08a1.5 1.5 0 00-1.5 0L4.99 9.003a1.5 1.5 0 00-.75 1.299v2.779a1.5 1.5 0 101 .009v-2.788a.5.5 0 01.25-.433L15.75 3.946a.5.5 0 01.5 0l10.258 5.923a.5.5 0 01.25.433v4.194a.5.5 0 101 0v-4.194a1.5 1.5 0 00-.75-1.3L16.75 3.08z",
|
21
|
+
fill: "url(#paint0_radial_ContainerRegistry32ColorfulIcon_13666_77994)"
|
22
|
+
}), /*#__PURE__*/React.createElement("path", {
|
23
|
+
d: "M5.241 18.498a.5.5 0 10-1 0v3.424a1.5 1.5 0 00.75 1.3l10.259 5.922a1.5 1.5 0 001.5 0l10.258-5.923a1.5 1.5 0 00.75-1.299v-2.015a1.5 1.5 0 10-1 .015v2a.5.5 0 01-.25.433L16.25 28.278a.5.5 0 01-.5 0L5.49 22.355a.5.5 0 01-.25-.433v-3.424z",
|
24
|
+
fill: "url(#paint1_radial_ContainerRegistry32ColorfulIcon_13666_77994)"
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
26
|
+
fillRule: "evenodd",
|
27
|
+
clipRule: "evenodd",
|
28
|
+
d: "M16.45 6.682a.9.9 0 00-.9 0l-7.594 4.385a.5.5 0 00-.25.433v8.769a.9.9 0 00.45.78l7.594 4.384a.5.5 0 00.5 0l7.594-4.385a.9.9 0 00.45-.78V11.5a.5.5 0 00-.25-.433L16.45 6.682zm-.95 9.123l-6.794-3.487v7.893l6.794 3.923v-8.329zm7.794 4.406L16.5 24.134v-8.329l6.794-3.487v7.893zm-.545-8.737L16 14.938 9.25 11.474 16 7.577l6.75 3.897z",
|
29
|
+
fill: "url(#paint2_radial_ContainerRegistry32ColorfulIcon_13666_77994)"
|
30
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
31
|
+
id: "paint0_radial_ContainerRegistry32ColorfulIcon_13666_77994",
|
32
|
+
cx: 0,
|
33
|
+
cy: 0,
|
34
|
+
r: 1,
|
35
|
+
gradientUnits: "userSpaceOnUse",
|
36
|
+
gradientTransform: "rotate(-46.298 35.932 10.897) scale(36.9195 36.8816)"
|
37
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
38
|
+
stopColor: "#6B53FF"
|
39
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
40
|
+
offset: 1,
|
41
|
+
stopColor: "#4081FF"
|
42
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
43
|
+
id: "paint1_radial_ContainerRegistry32ColorfulIcon_13666_77994",
|
44
|
+
cx: 0,
|
45
|
+
cy: 0,
|
46
|
+
r: 1,
|
47
|
+
gradientUnits: "userSpaceOnUse",
|
48
|
+
gradientTransform: "rotate(-46.298 35.932 10.897) scale(36.9195 36.8816)"
|
49
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
50
|
+
stopColor: "#6B53FF"
|
51
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
52
|
+
offset: 1,
|
53
|
+
stopColor: "#4081FF"
|
54
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
55
|
+
id: "paint2_radial_ContainerRegistry32ColorfulIcon_13666_77994",
|
56
|
+
cx: 0,
|
57
|
+
cy: 0,
|
58
|
+
r: 1,
|
59
|
+
gradientUnits: "userSpaceOnUse",
|
60
|
+
gradientTransform: "rotate(-46.298 35.932 10.897) scale(36.9195 36.8816)"
|
61
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
62
|
+
stopColor: "#6B53FF"
|
63
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
64
|
+
offset: 1,
|
65
|
+
stopColor: "#4081FF"
|
66
|
+
}))));
|
67
|
+
}
|
68
|
+
export default ContainerRegistry32ColorfulIcon;
|
@@ -0,0 +1,51 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function GlobalConfiguration24GradientBlueIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}) {
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
+
width: 24,
|
9
|
+
height: 24,
|
10
|
+
fill: "none",
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
12
|
+
"aria-labelledby": titleId
|
13
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
14
|
+
id: titleId
|
15
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
16
|
+
fillRule: "evenodd",
|
17
|
+
clipRule: "evenodd",
|
18
|
+
d: "M2.416 5.526c0-.792.642-1.434 1.433-1.434H20.15c.792 0 1.434.642 1.434 1.434v12.948c0 .792-.642 1.434-1.434 1.434H3.85a1.433 1.433 0 01-1.434-1.434V5.526zm1.433-.503a.502.502 0 00-.502.503v2.74h17.305v-2.74a.502.502 0 00-.502-.503H3.85zm16.803 4.174H3.347v9.277c0 .278.225.503.502.503H20.15a.502.502 0 00.502-.503V9.197zM5.568 6.69a.59.59 0 11-1.18 0 .59.59 0 011.18 0zm1.335.59a.59.59 0 100-1.18.59.59 0 000 1.18zm2.516-.59a.59.59 0 11-1.18 0 .59.59 0 011.18 0z",
|
19
|
+
fill: "url(#paint0_radial_GlobalConfiguration24GradientBlueIcon_3293_191198)"
|
20
|
+
}), /*#__PURE__*/React.createElement("path", {
|
21
|
+
fillRule: "evenodd",
|
22
|
+
clipRule: "evenodd",
|
23
|
+
d: "M11.673 10.086h.658c.043 0 .093 0 .138.003a.566.566 0 01.513.453c.01.044.016.095.021.138l.001.008.048.383c.116.04.23.087.339.14l.311-.242c.034-.026.075-.057.112-.082a.565.565 0 01.683.043c.034.029.07.064.1.095l.466.465c.03.03.066.066.095.1a.565.565 0 01.043.683 1.837 1.837 0 01-.083.112l-.242.312c.053.11.1.223.14.339l.392.049c.043.005.093.011.137.02a.566.566 0 01.453.513c.004.045.004.096.004.14v.657c0 .043 0 .094-.004.138a.565.565 0 01-.453.513 1.833 1.833 0 01-.137.021l-.391.05c-.04.115-.088.229-.14.338l.241.312c.027.034.058.074.083.111a.566.566 0 01-.043.683c-.029.035-.065.07-.095.1l-.465.466c-.031.03-.067.066-.1.096a.566.566 0 01-.683.043c-.039-.026-.079-.057-.113-.083l-.311-.243c-.11.053-.223.1-.34.141l-.048.391c-.005.043-.012.093-.02.137a.566.566 0 01-.513.453c-.046.004-.096.004-.14.004h-.657c-.043 0-.094 0-.139-.003a.566.566 0 01-.513-.453c-.009-.045-.015-.095-.02-.138l-.05-.391a3.17 3.17 0 01-.338-.14l-.312.242c-.034.026-.074.057-.111.082a.565.565 0 01-.683-.043c-.035-.029-.07-.064-.101-.095l-.465-.465a1.836 1.836 0 01-.096-.1.566.566 0 01-.043-.683c.025-.038.056-.078.083-.112l.242-.312c-.053-.11-.1-.223-.14-.339l-.384-.048h-.008a1.829 1.829 0 01-.137-.021.565.565 0 01-.453-.513c-.003-.045-.003-.096-.003-.14v-.649-.008c0-.043 0-.094.003-.139a.566.566 0 01.453-.513c.044-.009.094-.015.137-.02l.008-.001.384-.048c.04-.117.087-.23.14-.34l-.237-.304-.005-.007a1.867 1.867 0 01-.082-.111.566.566 0 01.043-.683c.028-.035.064-.07.095-.101a.62.62 0 00.005-.006l.454-.453.006-.006c.03-.03.066-.066.1-.096a.566.566 0 01.683-.042 1.806 1.806 0 01.118.087l.306.237c.11-.053.222-.1.338-.14l.048-.383.001-.008c.006-.043.012-.094.021-.137a.566.566 0 01.513-.453c.045-.004.096-.004.139-.004zm1.305 1.011l.052-.007-.052.007zm-1.261-.284l-.046.365-.002.016c-.006.055-.018.157-.062.247a.553.553 0 01-.3.274c-.033.014-.072.027-.108.04l-.006.002c-.091.032-.18.069-.266.11l-.006.003c-.034.017-.071.035-.105.049a.551.551 0 01-.406.018.762.762 0 01-.23-.141l-.29-.226-.404.403.226.29.01.013c.034.043.098.124.13.22a.552.552 0 01-.017.405c-.014.033-.033.07-.05.104l-.002.006a2.445 2.445 0 00-.11.266l-.002.006-.04.109a.551.551 0 01-.274.3c-.09.043-.193.055-.248.061l-.016.002-.364.046v.57l.364.045.016.002c.055.007.158.019.248.063a.552.552 0 01.274.299l.04.109.002.006c.031.09.068.18.11.266l.003.005c.016.035.035.072.049.105a.552.552 0 01.018.406.762.762 0 01-.131.219l-.01.012-.226.29.403.404.29-.226.013-.01c.043-.034.124-.098.219-.13a.551.551 0 01.405.017c.034.014.071.032.105.049l.006.003c.086.041.175.078.266.11l.006.002c.036.012.075.026.109.04a.552.552 0 01.3.274c.043.09.055.192.061.247l.002.016.046.365h.57l.045-.365.002-.016c.007-.055.018-.157.063-.247a.552.552 0 01.299-.274c.033-.014.072-.027.108-.04l.006-.002a2.47 2.47 0 00.266-.11l.006-.003c.034-.017.072-.035.105-.049a.551.551 0 01.406-.018.762.762 0 01.231.141l.29.226.403-.403-.225-.29-.01-.013a.763.763 0 01-.13-.22.553.553 0 01.017-.405c.014-.033.032-.07.049-.105l.002-.005c.042-.086.08-.175.11-.266l.003-.006c.012-.036.026-.076.04-.109a.551.551 0 01.274-.3c.09-.043.192-.055.247-.062.006 0 .011 0 .016-.002l.364-.045v-.57l-.364-.046c-.005 0-.01 0-.016-.002-.055-.006-.158-.018-.247-.062a.55.55 0 01-.274-.3 2.202 2.202 0 01-.04-.108l-.002-.006a2.443 2.443 0 00-.11-.266l-.003-.005a2.299 2.299 0 01-.05-.105.553.553 0 01-.018-.406c.033-.095.098-.176.132-.219a1.28 1.28 0 00.01-.012l.225-.29-.403-.404-.29.226a.762.762 0 01-.232.14.551.551 0 01-.405-.017 2.2 2.2 0 01-.105-.049l-.006-.003a2.464 2.464 0 00-.266-.11l-.006-.002c-.036-.013-.075-.026-.108-.04a.553.553 0 01-.3-.274c-.044-.09-.055-.192-.062-.247l-.002-.016-.045-.365h-.57zm.285 2.546a.727.727 0 100 1.454.727.727 0 000-1.454zm-1.455.727a1.454 1.454 0 112.91 0 1.454 1.454 0 01-2.91 0z",
|
24
|
+
fill: "url(#paint1_radial_GlobalConfiguration24GradientBlueIcon_3293_191198)"
|
25
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
26
|
+
id: "paint0_radial_GlobalConfiguration24GradientBlueIcon_3293_191198",
|
27
|
+
cx: 0,
|
28
|
+
cy: 0,
|
29
|
+
r: 1,
|
30
|
+
gradientUnits: "userSpaceOnUse",
|
31
|
+
gradientTransform: "matrix(19.16749 -15.81518 15.52733 18.81861 2.416 19.908)"
|
32
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
33
|
+
stopColor: "#5BCAFF"
|
34
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
35
|
+
offset: 1,
|
36
|
+
stopColor: "#06F"
|
37
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
38
|
+
id: "paint1_radial_GlobalConfiguration24GradientBlueIcon_3293_191198",
|
39
|
+
cx: 0,
|
40
|
+
cy: 0,
|
41
|
+
r: 1,
|
42
|
+
gradientUnits: "userSpaceOnUse",
|
43
|
+
gradientTransform: "matrix(19.16749 -15.81518 15.52733 18.81861 2.416 19.908)"
|
44
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
45
|
+
stopColor: "#5BCAFF"
|
46
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
47
|
+
offset: 1,
|
48
|
+
stopColor: "#06F"
|
49
|
+
}))));
|
50
|
+
}
|
51
|
+
export default GlobalConfiguration24GradientBlueIcon;
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function GlobalConfiguration24OntintIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}) {
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
+
width: 24,
|
9
|
+
height: 24,
|
10
|
+
fill: "none",
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
12
|
+
"aria-labelledby": titleId
|
13
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
14
|
+
id: titleId
|
15
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
16
|
+
fillRule: "evenodd",
|
17
|
+
clipRule: "evenodd",
|
18
|
+
d: "M2.416 5.526c0-.792.642-1.434 1.433-1.434H20.15c.792 0 1.434.642 1.434 1.434v12.948c0 .792-.642 1.434-1.434 1.434H3.85a1.433 1.433 0 01-1.434-1.434V5.526zm1.433-.503a.502.502 0 00-.502.503v2.74h17.305v-2.74a.502.502 0 00-.502-.503H3.85zm16.803 4.174H3.347v9.277c0 .278.225.503.502.503H20.15a.502.502 0 00.502-.503V9.197zM5.568 6.69a.59.59 0 11-1.18 0 .59.59 0 011.18 0zm1.335.59a.59.59 0 100-1.18.59.59 0 000 1.18zm2.516-.59a.59.59 0 11-1.18 0 .59.59 0 011.18 0z",
|
19
|
+
fill: "#fff"
|
20
|
+
}), /*#__PURE__*/React.createElement("path", {
|
21
|
+
fillRule: "evenodd",
|
22
|
+
clipRule: "evenodd",
|
23
|
+
d: "M11.673 10.086h.658c.043 0 .093 0 .138.003a.566.566 0 01.513.453c.01.044.016.095.021.138l.001.008.048.383c.116.04.23.087.339.14l.311-.242c.034-.026.075-.057.112-.082a.565.565 0 01.683.043c.034.029.07.064.1.095l.466.465c.03.03.066.066.095.1a.565.565 0 01.043.683 1.837 1.837 0 01-.083.112l-.242.312c.053.11.1.223.14.339l.392.049c.043.005.093.011.137.02a.566.566 0 01.453.513c.004.045.004.096.004.14v.657c0 .043 0 .094-.004.138a.565.565 0 01-.453.513 1.833 1.833 0 01-.137.021l-.391.05c-.04.115-.088.229-.14.338l.241.312c.027.034.058.074.083.111a.566.566 0 01-.043.683c-.029.035-.065.07-.095.1l-.465.466c-.031.03-.067.066-.1.096a.566.566 0 01-.683.043c-.039-.026-.079-.057-.113-.083l-.311-.243c-.11.053-.223.1-.34.141l-.048.391c-.005.043-.012.093-.02.137a.566.566 0 01-.513.453c-.046.004-.096.004-.14.004h-.657c-.043 0-.094 0-.139-.003a.566.566 0 01-.513-.453c-.009-.045-.015-.095-.02-.138l-.05-.391a3.17 3.17 0 01-.338-.14l-.312.242c-.034.026-.074.057-.111.082a.565.565 0 01-.683-.043c-.035-.029-.07-.064-.101-.095l-.465-.465a1.836 1.836 0 01-.096-.1.566.566 0 01-.043-.683c.025-.038.056-.078.083-.112l.242-.312c-.053-.11-.1-.223-.14-.339l-.384-.048h-.008a1.829 1.829 0 01-.137-.021.565.565 0 01-.453-.513c-.003-.045-.003-.096-.003-.14v-.649-.008c0-.043 0-.094.003-.139a.566.566 0 01.453-.513c.044-.009.094-.015.137-.02l.008-.001.384-.048c.04-.117.087-.23.14-.34l-.237-.304-.005-.007a1.867 1.867 0 01-.082-.111.566.566 0 01.043-.683c.028-.035.064-.07.095-.101a.62.62 0 00.005-.006l.454-.453.006-.006c.03-.03.066-.066.1-.096a.566.566 0 01.683-.042 1.806 1.806 0 01.118.087l.306.237c.11-.053.222-.1.338-.14l.048-.383.001-.008c.006-.043.012-.094.021-.137a.566.566 0 01.513-.453c.045-.004.096-.004.139-.004zm1.305 1.011l.052-.007-.052.007zm-1.261-.284l-.046.365-.002.016c-.006.055-.018.157-.062.247a.553.553 0 01-.3.274c-.033.014-.072.027-.108.04l-.006.002c-.091.032-.18.069-.266.11l-.006.003c-.034.017-.071.035-.105.049a.551.551 0 01-.406.018.762.762 0 01-.23-.141l-.29-.226-.404.403.226.29.01.013c.034.043.098.124.13.22a.552.552 0 01-.017.405c-.014.033-.033.07-.05.104l-.002.006a2.445 2.445 0 00-.11.266l-.002.006-.04.109a.551.551 0 01-.274.3c-.09.043-.193.055-.248.061l-.016.002-.364.046v.57l.364.045.016.002c.055.007.158.019.248.063a.552.552 0 01.274.299l.04.109.002.006c.031.09.068.18.11.266l.003.005c.016.035.035.072.049.105a.552.552 0 01.018.406.762.762 0 01-.131.219l-.01.012-.226.29.403.404.29-.226.013-.01c.043-.034.124-.098.219-.13a.551.551 0 01.405.017c.034.014.071.032.105.049l.006.003c.086.041.175.078.266.11l.006.002c.036.012.075.026.109.04a.552.552 0 01.3.274c.043.09.055.192.061.247l.002.016.046.365h.57l.045-.365.002-.016c.007-.055.018-.157.063-.247a.552.552 0 01.299-.274c.033-.014.072-.027.108-.04l.006-.002a2.47 2.47 0 00.266-.11l.006-.003c.034-.017.072-.035.105-.049a.551.551 0 01.406-.018.762.762 0 01.231.141l.29.226.403-.403-.225-.29-.01-.013a.763.763 0 01-.13-.22.553.553 0 01.017-.405c.014-.033.032-.07.049-.105l.002-.005c.042-.086.08-.175.11-.266l.003-.006c.012-.036.026-.076.04-.109a.551.551 0 01.274-.3c.09-.043.192-.055.247-.062.006 0 .011 0 .016-.002l.364-.045v-.57l-.364-.046c-.005 0-.01 0-.016-.002-.055-.006-.158-.018-.247-.062a.55.55 0 01-.274-.3 2.202 2.202 0 01-.04-.108l-.002-.006a2.443 2.443 0 00-.11-.266l-.003-.005a2.299 2.299 0 01-.05-.105.553.553 0 01-.018-.406c.033-.095.098-.176.132-.219a1.28 1.28 0 00.01-.012l.225-.29-.403-.404-.29.226a.762.762 0 01-.232.14.551.551 0 01-.405-.017 2.2 2.2 0 01-.105-.049l-.006-.003a2.464 2.464 0 00-.266-.11l-.006-.002c-.036-.013-.075-.026-.108-.04a.553.553 0 01-.3-.274c-.044-.09-.055-.192-.062-.247l-.002-.016-.045-.365h-.57zm.285 2.546a.727.727 0 100 1.454.727.727 0 000-1.454zm-1.455.727a1.454 1.454 0 112.91 0 1.454 1.454 0 01-2.91 0z",
|
24
|
+
fill: "#fff"
|
25
|
+
}));
|
26
|
+
}
|
27
|
+
export default GlobalConfiguration24OntintIcon;
|
package/dist/esm/index.d.ts
CHANGED
@@ -245,6 +245,9 @@ export { default as ClusterNormalIcon } from './ClusterNormalIcon'
|
|
245
245
|
export { default as ConsistencyConsistentGroup16GradientBlueIcon } from './ConsistencyConsistentGroup16GradientBlueIcon'
|
246
246
|
export { default as ConsistencyGroup24GradientBlueIcon } from './ConsistencyGroup24GradientBlueIcon'
|
247
247
|
export { default as ConsistencyGroup24GradientGrayIcon } from './ConsistencyGroup24GradientGrayIcon'
|
248
|
+
export { default as ContainerRegistry24BlueIcon } from './ContainerRegistry24BlueIcon'
|
249
|
+
export { default as ContainerRegistry24OntintIcon } from './ContainerRegistry24OntintIcon'
|
250
|
+
export { default as ContainerRegistry32ColorfulIcon } from './ContainerRegistry32ColorfulIcon'
|
248
251
|
export { default as CopyToEllipsis324GradientBlueIcon } from './CopyToEllipsis324GradientBlueIcon'
|
249
252
|
export { default as CopyToEllipsis324GradientGrayIcon } from './CopyToEllipsis324GradientGrayIcon'
|
250
253
|
export { default as CpuTemperatureCriticalIcon } from './CpuTemperatureCriticalIcon'
|
@@ -429,6 +432,8 @@ export { default as GatewayService24GradientBlueIcon } from './GatewayService24G
|
|
429
432
|
export { default as GatewayService24GradientGreyIcon } from './GatewayService24GradientGreyIcon'
|
430
433
|
export { default as GatewayService24OntintIcon } from './GatewayService24OntintIcon'
|
431
434
|
export { default as GenerateSnapshotImmediately16BlueIcon } from './GenerateSnapshotImmediately16BlueIcon'
|
435
|
+
export { default as GlobalConfiguration24GradientBlueIcon } from './GlobalConfiguration24GradientBlueIcon'
|
436
|
+
export { default as GlobalConfiguration24OntintIcon } from './GlobalConfiguration24OntintIcon'
|
432
437
|
export { default as GlobalPolicy24GradientBlueIcon } from './GlobalPolicy24GradientBlueIcon'
|
433
438
|
export { default as GpuDevice16GradientBlueIcon } from './GpuDevice16GradientBlueIcon'
|
434
439
|
export { default as GpuDevice16GradientGreyIcon } from './GpuDevice16GradientGreyIcon'
|
package/dist/esm/index.js
CHANGED
@@ -245,6 +245,9 @@ export { default as ClusterNormalIcon } from './ClusterNormalIcon.js'
|
|
245
245
|
export { default as ConsistencyConsistentGroup16GradientBlueIcon } from './ConsistencyConsistentGroup16GradientBlueIcon.js'
|
246
246
|
export { default as ConsistencyGroup24GradientBlueIcon } from './ConsistencyGroup24GradientBlueIcon.js'
|
247
247
|
export { default as ConsistencyGroup24GradientGrayIcon } from './ConsistencyGroup24GradientGrayIcon.js'
|
248
|
+
export { default as ContainerRegistry24BlueIcon } from './ContainerRegistry24BlueIcon.js'
|
249
|
+
export { default as ContainerRegistry24OntintIcon } from './ContainerRegistry24OntintIcon.js'
|
250
|
+
export { default as ContainerRegistry32ColorfulIcon } from './ContainerRegistry32ColorfulIcon.js'
|
248
251
|
export { default as CopyToEllipsis324GradientBlueIcon } from './CopyToEllipsis324GradientBlueIcon.js'
|
249
252
|
export { default as CopyToEllipsis324GradientGrayIcon } from './CopyToEllipsis324GradientGrayIcon.js'
|
250
253
|
export { default as CpuTemperatureCriticalIcon } from './CpuTemperatureCriticalIcon.js'
|
@@ -429,6 +432,8 @@ export { default as GatewayService24GradientBlueIcon } from './GatewayService24G
|
|
429
432
|
export { default as GatewayService24GradientGreyIcon } from './GatewayService24GradientGreyIcon.js'
|
430
433
|
export { default as GatewayService24OntintIcon } from './GatewayService24OntintIcon.js'
|
431
434
|
export { default as GenerateSnapshotImmediately16BlueIcon } from './GenerateSnapshotImmediately16BlueIcon.js'
|
435
|
+
export { default as GlobalConfiguration24GradientBlueIcon } from './GlobalConfiguration24GradientBlueIcon.js'
|
436
|
+
export { default as GlobalConfiguration24OntintIcon } from './GlobalConfiguration24OntintIcon.js'
|
432
437
|
export { default as GlobalPolicy24GradientBlueIcon } from './GlobalPolicy24GradientBlueIcon.js'
|
433
438
|
export { default as GpuDevice16GradientBlueIcon } from './GpuDevice16GradientBlueIcon.js'
|
434
439
|
export { default as GpuDevice16GradientGreyIcon } from './GpuDevice16GradientGreyIcon.js'
|
package/dist/image-types.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export type ImagesType = | "Alert" | "App_Store" | "Backup" | "ContainerService" | "Event" | "IO-BandWidth" | "Infrastructure" | "Large_Display" | "NavTask" | "NetworkSecurity" | "Placeholder" | "Recycle_Bin" | "Report" | "Resource_Optimization" | "Setting" | "Settings" | "Smtx_Inspector" | "Snapshot" | "Tag" | "TrafficVisualization" | "abnormal_status" | "access_restriction" | "access_restriction_white" | "active-add-14-gradiendt-blue" | "active-connection-16-gradiendt-blue" | "active-observability-service-18-blue" | "active-observability-service-18-gray" | "active-observability-service-24-blue" | "active-observability-service-24-gray" | "active-uninstal-14-gradiendt-red" | "adjust-config-16-gradient-blue" | "adjust-config-16-gradient-gray" | "advance-blue" | "advance" | "agent-mesh-24-ontint" | "agent-mesh-gradient-24-blue" | "agent-mesh-gradient-24-grey" | "agent-mesh-upgrade-24-blue" | "agent-mesh-upload-48-blue" | "alert-bell-16-gradient-blue" | "alert-bell-24-blue" | "alert-bell-24-gradient-blue" | "alert-bell-24-gradient-gray" | "alert-bell-24" | "alert-bell-arrow-24-gradient-blue" | "alert-bell-arrow-24-ontint" | "alert-bell-fill-24-blue" | "alert-bell-fill-24-gradient-blue" | "alert-bell-fill-24-gradient-gray" | "alert-bell-fill-24-gradient-red" | "alert-bell-fill-24-gradient-yellow" | "alert-bell-fill-24" | "alert-bell-outlined-16-gradient-blue" | "alert-bell-outlined-16-gradient-gray" | "alert-bell-resolved-24-blue" | "alert-bell-resolved-24-gradient-blue" | "alert-bell-resolved-24-gradient-gray" | "alert-bell-resolved-24-ontint" | "alert-bell-resolved-24" | "alert-bell-rule-24-blue" | "alert-bell-rule-24-gray" | "alert-bell-rule-24" | "alert-bell-rule-gear-24-gradient-blue" | "alert-bell-rule-gear-24-gradient-gray" | "alert-bell-rule-gear-24-ontint" | "alert-bell-unresolved-24-gradient-blue" | "alert-bell-unresolved-24-gradient-gray" | "alert-bell-unresolved-24-ontint" | "alert-gradient-bell-unresolved-24-blue" | "alert-gradient-bell-unresolved-24" | "alert-mail-notification-24-gradient-blue" | "alert-mail-notification-24-ontint" | "all-menu-16-blue" | "all-menu-16-gradient-blue" | "all-menu-16-gray" | "arrow-bold-down-16-blue" | "arrow-bold-down-16-white" | "arrow-bold-down-16" | "arrow-bold-left-16-blue" | "arrow-chevron-down-16-blue" | "arrow-chevron-down-16-bold-blue" | "arrow-chevron-down-16-bold-ontint" | "arrow-chevron-down-16-bold-secondary" | "arrow-chevron-down-16-ontint" | "arrow-chevron-down-16-secondary" | "arrow-chevron-down-small-16-blue" | "arrow-chevron-down-small-16-bold-blue" | "arrow-chevron-down-small-16-bold-ontint" | "arrow-chevron-down-small-16-bold-secondary" | "arrow-chevron-down-small-16-ontint" | "arrow-chevron-down-small-16-secondary" | "arrow-chevron-left-16-bold-blue" | "arrow-chevron-left-16-bold-ontint" | "arrow-chevron-left-16-bold-secondary" | "arrow-chevron-left-16-bold-super" | "arrow-chevron-left-16-bold-tertiary" | "arrow-chevron-left-16-ontint-1" | "arrow-chevron-left-16-ontint" | "arrow-chevron-left-16-secondary" | "arrow-chevron-left-small-16-blue" | "arrow-chevron-left-small-16-bold-blue" | "arrow-chevron-left-small-16-bold-ontint" | "arrow-chevron-left-small-16-bold-secondary" | "arrow-chevron-left-small-16-ontint-1" | "arrow-chevron-left-small-16-ontint" | "arrow-chevron-right-16-blue" | "arrow-chevron-right-16-bold-blue" | "arrow-chevron-right-16-bold-ontint" | "arrow-chevron-right-16-bold-secondary" | "arrow-chevron-right-16-ontint" | "arrow-chevron-right-16-secondary" | "arrow-chevron-right-small-16-blue" | "arrow-chevron-right-small-16-bold-blue" | "arrow-chevron-right-small-16-bold-ontint" | "arrow-chevron-right-small-16-bold-secondary" | "arrow-chevron-right-small-16-ontint" | "arrow-chevron-right-small-16-secondary" | "arrow-chevron-up-16-blue" | "arrow-chevron-up-16-bold-blue" | "arrow-chevron-up-16-bold-ontint" | "arrow-chevron-up-16-bold-secondary" | "arrow-chevron-up-16-ontint" | "arrow-chevron-up-16-secondary" | "arrow-chevron-up-small-16-blue" | "arrow-chevron-up-small-16-bold-blue" | "arrow-chevron-up-small-16-bold-ontint" | "arrow-chevron-up-small-16-bold-secondary" | "arrow-chevron-up-small-16-ontint" | "arrow-chevron-up-small-16-secondary" | "arrow-down-16-blue" | "arrow-down-16-grey" | "arrow-down-16" | "arrow-down-24" | "arrow_right_gray" | "backup-plan-24-blue" | "backup-plan-24-gray" | "backup-plan-24-ontint" | "backup-service-24-blue" | "backup-service-24-gradient-blue" | "backup-service-24-gray" | "backup-service-24-ontint" | "backup-store-repository-24-blue" | "backup-store-repository-24-gray" | "backup-store-repository-24-ontint" | "bar-chart-red-fail-icon-12" | "bell" | "bell_grey" | "bonding-16-gradient-blue" | "bonding-16-red" | "bonding-16-yellow" | "calendar-clock-date-time-24-gradient-blue" | "calendar-clock-date-time-24-gradient-gray" | "calendar-clock-date-time-24-secondary" | "calendar-date-24-gradient-blue" | "calendar-date-24-gradient-gray" | "calendar-date-24-secondary" | "calendar-time-record-16" | "caret-triangle-down-16" | "caret-triangle-down-large-16-blue" | "caret-triangle-down-large-16-ontint" | "cdrom-24-blue" | "cdrom-24" | "cdrom-disc-24-gradient-blue" | "cdrom-disc-24-gradient-gray" | "certificate-identity-24-gradient-blue" | "certificate-identity-24-gradient-gray" | "certificate-ssl-24-gradient-blue" | "certificate-ssl-24-gradient-gray" | "chain-associate-connect-16-bold-ontint" | "chain-associate-connect-16-gradient-blue" | "chain-associate-connect-24-gradient-blue" | "chain-associate-connect-24-gradient-gray" | "chain-connect-16-gradient-blue" | "chain-disassociate-disconnect-break-16-bold-ontint" | "chain-disassociate-disconnect-break-24-gradient-blue" | "chain-disassociate-disconnect-break-24-gradient-gray" | "chain-disassociate-disconnect-break-24-red" | "chart-line-24-gradient-blue" | "chart-line-24-gradient-gray" | "chart-stacking-area-24-gradient-blue" | "chart-stacking-area-24-gradient-gray" | "check-green" | "checkmark-added-circle-fill-16-blue" | "checkmark-added-circle-fill-16-secondary" | "checkmark-added-circle-fill-24-blue" | "checkmark-added-circle-fill-24-primary" | "checkmark-done-success-circle-fill-16-bold-green" | "checkmark-done-success-circle-fill-16-bold-ontint" | "checkmark-done-success-circle-fill-16-green" | "checkmark-done-success-circle-fill-16-ontint" | "checkmark-done-success-circle-fill-24-green" | "checkmark-done-success-circle-fill" | "checkmark-done-success-correct-16-blue" | "checkmark-done-success-correct-16-bold-blue" | "checkmark-done-success-correct-16-bold-green" | "checkmark-done-success-correct-16-bold-ontint" | "checkmark-done-success-correct-16-bold-secondary" | "checkmark-done-success-correct-16-green" | "checkmark-done-success-correct-16-ontint" | "checkmark-done-success-correct-16-secondary" | "checkmark-done-success-correct-16-tertiary" | "checkmark-done-success-correct-24-bold-green" | "checkmark-solved-circle-16-blue" | "checkmark-solved-circle-16-super" | "clipboard-copy-16-gradient-blue" | "clipboard-copy-16-gradient-gray" | "clipboard-copy-24-gradient-blue" | "clipboard-copy-24-gradient-gray" | "clock-time-16-gradient-blue" | "clock-time-16-gradient-gray" | "clock-time-16-secondary" | "clock-time-24-gradient-blue" | "clock-time-24-gradient-gray" | "clock-time-24-secondary" | "clock" | "clone-16-gradient-blue" | "clone-16-gradient-gray" | "clone" | "close-red" | "close" | "cloudtower-logo-text" | "cluster-16-blue" | "cluster-16-gradient-blue" | "cluster-16-gradient-gray" | "cluster-16-ontint" | "cluster-16" | "cluster-24-blue" | "cluster-24-gradient-blue" | "cluster-24-gradient-gray" | "cluster-24-ontint" | "cluster-24" | "cluster-blue" | "cluster-disconnected-16-blue" | "cluster-fill-16-ontint" | "cluster-fill-24-ontint" | "cluster-gray" | "cluster-outline-16-ontint" | "cluster-primary-16" | "cluster-upgrade-24-gradient-blue" | "cluster-upgrade-24-gradient-gray" | "cluster-upgrade-24-ontint" | "cluster" | "cluster_activated" | "cluster_normal" | "consistency-consistent-group-16-gradient-blue" | "consistency-group-24-gradient-blue" | "consistency-group-24-gradient-gray" | "copy-to-ellipsis-3-24-gradient-blue" | "copy-to-ellipsis-3-24-gradient-gray" | "cpu-temperature-critical" | "cpu-temperature-normal" | "cpu-temperature-warning" | "cpu-usage-16-blue" | "create-blank-vm-add-plus-24-gradient-blue" | "create-blank-vm-add-plus-24-gradient-gray" | "create-host-24-gradient-blue" | "create-placement-group-24-gradient-blue" | "create-security-policy-24-gradient-blue" | "create-security-policy-24-gradient-grey" | "create-vm-template-16" | "create-vm-via-template-24-gradient-blue" | "create-vmtemplate-add-plus-24-gradient-blue" | "create-vmtemplate-add-plus-24-gradient-gray" | "createvmtemplate" | "cross" | "csv" | "curve-link-24" | "dashboard-16-gradient-blue" | "dashboard-16-gradient-gray" | "dashboard-24-gradient-blue" | "dashboard-24-gradient-gray" | "dashboard-24-white" | "data-migration-24-blue" | "data-migration-24-ontint" | "data-recovery-24-blue" | "data-recovery-24-ontint" | "datacenter-16-blue" | "datacenter-16-gradient-blue" | "datacenter-16-gradient-gray" | "datacenter-16" | "datacenter-24-blue" | "datacenter-24-gradient-blue" | "datacenter-24-gradient-gray" | "datacenter-24-primary" | "datacenter-24" | "datacenter-empty-connect-center-16-gradient-blue" | "datacenter-fill-16-ontint" | "datacenter" | "datacenter_activated" | "datacenter_normal" | "delete" | "directory" | "disable-24-gradient-blue" | "disable-24-gradient-gray" | "disabled-16" | "disabled-nic-24-gradient-blue" | "disconnect-cluster-24-red" | "disconnected-cluster-16-gray" | "disconnected-cluster-16-ontint" | "disk-mount-16" | "disk-unmount-16-red" | "disk" | "distribute-16-gradient-blue" | "distribute-16-gradient-gray" | "dot-interval-separation-16-tertiary" | "down" | "download-16-gradient-blue" | "download-16-gradient-gray" | "download-24-gradient-blue" | "download-24-gradient-gray" | "download" | "drs-widget-empty-state" | "dynamic-resource-schedule-16-blue" | "dynamic-resource-schedule-16-ontint" | "dynamic-resource-schedule-24-blue" | "dynamic-resource-schedule-24-ontint" | "edge-gateway-24-gradient-blue" | "edge-gateway-24-gradient-grey" | "edge-gateway-24-gradient-ontint" | "edit-open-24-blue" | "edit-open-24" | "edit-pen-16-blue" | "edit-pen-16-bold-ontint" | "edit-pen-16-gradient-blue" | "edit-pen-16-gradient-gray" | "edit-pen-16-primary" | "edit-pen-16" | "edit-pen-24-gradient-blue" | "edit-pen-24-gradient-gray" | "edit-pen-on-tint" | "editvm" | "eject-16-gradient-blue" | "eject-16-gradient-gray" | "eject-16-red" | "eject-16-secondary" | "eject-24-gradient-blue" | "eject-24-gradient-gray" | "eject-24-secondary" | "enable-16-blue" | "enable-16-gray" | "enable-24-blue" | "enable-24-gray" | "entityFilter-ignore-gradient-16-gray" | "error-exclamation" | "error" | "event-auditing-16" | "event-auditing-24-blue" | "event-auditing-24-ontint" | "everoute-cluster-24-gradient-blue" | "everoute-cluster-24-gradient-grey" | "everoute-cluster-24-ontint" | "everoute-controller-16-gradient-gray" | "everoute-controller-24" | "everoute-services-16-gradient-blue" | "everoute-services-16-gradient-grey" | "everoute-services-24-gradient-blue" | "everoute-services-24-ontint" | "exclamation-error-circle-16-ontint" | "exclamation-error-circle-16-red" | "exclamation-error-circle-fill-16-ontint" | "exclamation-error-circle-fill-16-red" | "exclamation-error-circle-solid-16-red-white" | "exclamtion-mark-16-ontint" | "export-16-gradient-blue" | "export-16-gradient-gray" | "export-16-regular-ontint" | "export-24-gradient-blue" | "export-24-gradient-gray" | "export-24-secondary" | "export-24" | "export-file-16-gradient-blue" | "export-file-16-gradient-gray" | "export-file-16-ontint" | "export-file-24-gradient-blue" | "export-vm-24-gradient-blue" | "export-vm-24-gradient-gray" | "export-vm-24-ontint" | "export-vm-template-24-gradient-blue" | "export-vm-template-24-gradient-gray" | "export-vm-template-24-ontint" | "export-volume-24-gradient-blue" | "export-volume-24-gradient-gray" | "export-volume-24-ontint" | "external-subnet-24-gradient-blue" | "external-subnet-24-gradient-grey" | "external-subnet-24-ontint" | "failback-24-blue" | "failover-24-blue" | "file-16-gradient-blue" | "file_normal" | "filter-16-blue-solid" | "filter-16-blue" | "filter-16-gradient-blue-outlined" | "filter-16-secondary-outlined" | "filter-16-secondary-solid" | "filter-24-gradient-blue" | "filter-24-gradient-gray" | "filter-gear-display-setting-24-gradient-blue" | "filter-gear-display-setting-24-gradient-gray" | "filter-secondary-16" | "filter_activated" | "filter_modified" | "filter_normal" | "fit-to-screen-16" | "flash-light-16-gradient-blue" | "float-ip-16-gradient-blue" | "float-ip-16-gradient-grey" | "float-ip-16-ontint" | "float-ip-24-gradient-blue" | "float-ip-24-gradient-grey" | "float-ip-24-ontint" | "focus-indicator-16-blue" | "fold-16-regular-secondary" | "fold-col-cards-16-regular-blue" | "fold-col-cards-16-regular-secondary" | "folder" | "folder_activated" | "folder_normal" | "forcerestart" | "forcestop" | "from-left-arrow-40-blue" | "from-right-arrow-40-blue" | "full-period-24-gradient-gray" | "fullscreen-16" | "gateway-service-16-gradient-blue" | "gateway-service-16-gradient-grey" | "gateway-service-16-ontint" | "gateway-service-24-gradient-blue" | "gateway-service-24-gradient-grey" | "gateway-service-24-ontint" | "generate-snapshot-immediately-16-blue" | "global-policy-24-gradient-blue" | "gpu-device-16-gradient-blue" | "gpu-device-16-gradient-grey" | "gpu-device-24-gradient-blue" | "gpu-device-24-gradient-grey" | "ha-triggered-24-blue" | "ha-triggered-24-ontint" | "handle-point-8-16-blue" | "handle-point-8-16-secondary" | "handle-point-8-24-blue" | "handle-point-8-24-secondary" | "hardware" | "hdd-disk-24-gradient-blue" | "hierarchy-triangle-right-16-blue" | "hierarchy-triangle-right-16-gray" | "hierarchy-triangle-right-16-primary" | "host-16-blue" | "host-16-gradient-blue" | "host-16-gradient-gray" | "host-16-ontint" | "host-16-yellow" | "host-16" | "host-24-blue" | "host-24-gradient-blue" | "host-24-gradient-gray" | "host-24-yellow" | "host-24" | "host-fill-16-ontint" | "host-quarantine-16-secondary" | "host" | "host_activated" | "host_normal" | "ignore-24-gradient-blue" | "ignore-24-gradient-gray" | "import-security-policy-24-gradient-blue" | "import-security-policy-24-gradient-gray" | "import-vm-24-gradient-blue" | "import-vm-24-gradient-gray" | "import-vm-24-ontint" | "import-vm-template-24-gradient-blue" | "import-vm-template-24-gradient-gray" | "import-vm-template-24-ontint" | "import-volume-24-gradient-blue" | "import-volume-24-gradient-gray" | "import-volume-24-ontint" | "in-max-16" | "info-circle-24-blue" | "info-circle-24" | "info-circle-fill" | "info-i-circle-16-gradient-blue" | "info-i-circle-16-gradient-gray" | "info-i-circle-16-on-tint" | "info-i-circle-24-gradient-blue" | "info-i-circle-24-gradient-gray" | "info-i-circle-24-ontint" | "info-i-circle-24-secondary" | "info-i-circle-fill-16-blue" | "info-i-circle-fill-16-bold-blue" | "info-i-circle-fill-16-bold-ontint" | "info-i-circle-fill-16-ontint" | "info-i-circle-fill-16-quaternary" | "info-i-circle-fill-16-secondary" | "info-normal" | "info" | "install-24-gradient-blue" | "install-24-gradient-gray" | "installation-package-24-gradient-blue" | "installation-package-24-ontint" | "installtools" | "ip-24" | "iscsi-datastore-storage-object-16-gradient-blue" | "iscsi-datastore-storage-object-24-gradient-blue" | "iscsi-datastore-storage-object-24-gradient-gray" | "iscsi-lun-16-gradient-blue" | "iscsi-lun-16-yellow" | "iscsi-lun-24-blue" | "iscsi-lun-24-gradient-blue" | "iscsi-lun-24-gradient-gray" | "iscsi-lun-24" | "iscsi-target-16-gradient-blue" | "iscsi-target-24-blue" | "iscsi-target-24" | "iso-24-blue" | "iso-24" | "iso-blue" | "iso-image-disc-16-gradient-blue" | "iso-image-disc-16-gradient-yellow" | "iso-image-disc-24-gradient-blue" | "iso-image-disc-24-gradient-gray" | "iso-image-disc-24-ontint" | "iso" | "isolation-16-blue" | "isolation-24-blue" | "l2-gw-16-gradient-blue" | "l2-gw-16-gradient-grey" | "l2-gw-16-ontint" | "l2-gw-24-gradient-blue" | "l2-gw-24-gradient-grey" | "l2-gw-24-ontint" | "l3-router-16-gradient-blue" | "l3-router-16-gradient-grey" | "l3-router-16-ontint" | "l3-router-24-gradient-blue" | "l3-router-24-gradient-grey" | "l3-router-24-ontint" | "language-switcher-24-gradient-blue" | "language-switcher-24-white" | "lb-gw-16-gradient-blue" | "lb-gw-16-gradient-grey" | "lb-gw-16-ontint" | "lb-gw-24-gradient-blue" | "lb-gw-24-gradient-grey" | "lb-gw-24-ontint" | "ldap-24-gradient-blue" | "ldap-24-white" | "ldap-sync-16-white" | "leave-fullscreen-16" | "load-balancer-16-gradient-blue" | "load-balancer-16-gradient-grey" | "load-balancer-24-gradient-blue" | "load-balancer-24-gradient-grey" | "load-balancer-monitor-24-fill-ontint" | "load-balancer-monitor-24-gradient-blue" | "load-balancer-monitor-24-gradient-grey" | "loading-16-bold-ontint" | "loading-16-gradient-blue" | "loading-24-bold-gradient-blue" | "loading-8-bold-gradient-blue" | "loading-8-bold-ontint" | "loading-8-gradient-blue" | "loading-8-gradient-white" | "loading_blue" | "loading_gray" | "lock-16-gradient-gray" | "lock" | "log-collection-16-gradient-blue" | "log-collection-16-gray" | "log-collection-24-gradient-blue" | "log-collection-24-gradient-gray" | "log-collection-24-ontint" | "log-collection-24-white" | "login-options-24-gradient-blue" | "login-options-24-white" | "logo-background" | "logo-fuzzy-background" | "long-arrow-down-16" | "long-arrow-up-16" | "maintenance-mode-enter-16-gradient-blue" | "maintenance-mode-enter-16-gradient-yellow" | "maintenance-mode-enter-24-gradient-blue" | "maintenance-mode-enter-24-gradient-yellow" | "maintenance-mode-exist-16-gradient-blue" | "maintenance-mode-exist-16-gradient-yellow" | "maintenance-mode-exist-24-gradient-blue" | "maintenance-mode-exist-24-gradient-yellow" | "maintenance-mode-give-up-16-gradient-blue" | "maintenance-mode-give-up-16-gradient-yellow" | "maintenance-mode-give-up-24-gradient-blue" | "maintenance-mode-give-up-24-gradient-yellow" | "memory-usage-16-green" | "metro-cluster-16-gradient-blue" | "metro-cluster-16-ontint" | "metro-cluster-network-status-24-blue" | "metro-witness-node-24-blue" | "mfa-setting-24-gradient-blue" | "mfa-setting-24-white" | "migrate-16-gradient-blue" | "migrate-16-gradient-gray" | "migrate" | "migration-network-16-blue" | "minus-16-bold-ontint" | "minus-unmount-remove-circle-16-gradient-red" | "monitoring-16-gradient-blue" | "monitoring-24-gradient-blue" | "monitoring-24-gradient-gray" | "monitoring-24-gradient-ontint" | "monitoring-advanced-24-gradient-blue" | "monitoring-advanced-24-ontint" | "monitoring-view-16-gradient-blue" | "more-ellipsis-16-blue" | "more-ellipsis-16-ontint" | "more-ellipsis-16" | "more-ellipsis-24-blue" | "more-ellipsis-24" | "more-ellipsis-3-16-bold-blue" | "more-ellipsis-3-16-bold-ontint" | "more-ellipsis-3-16-bold-primary" | "more-ellipsis-3-16-bold-secondary" | "more-ellipsis-3-24-bold-blue" | "more-ellipsis-3-24-bold-ontint" | "more-ellipsis-3-24-bold-primary" | "more-ellipsis-3-24-bold-secondary" | "more-menu-16-blue" | "more-menu-16-bold-blue" | "more-menu-16-gray" | "mount-cdrom-16" | "mount-cdrom-disc-16-gradient-gray" | "mount-cdrom-disc-16-secondary" | "mount-cdrom-disc-24-gradient-blue" | "mount-cdrom-disc-24-gradient-gray" | "mount-virtual-volume-16-gradient-gray" | "mount-virtual-volume-16-secondary" | "mount-virtual-volume-24-gradient-blue" | "mount-virtual-volume-24-gradient-gray" | "mount-vm-volume-16" | "mounted" | "move-16-gradient-blue" | "nat-gw-16-gradient-blue" | "nat-gw-16-gradient-grey" | "nat-gw-16-gradient-ontint" | "nat-gw-24-gradient-blue" | "nat-gw-24-gradient-grey" | "nat-gw-24-ontint" | "network-16-gradient-blue" | "network-24-blue" | "network-24" | "network-access-16-blue" | "network-access-16-gradient-blue" | "network-access-16-red" | "network-access-16-yellow" | "network-access-24-gradient-blue" | "network-access-24-gradient-gray" | "network-access-24-gradient-green" | "network-management-16-gradient-blue" | "network-management-16-red" | "network-management-16-yellow" | "network-management-24-gradient-blue" | "network-management-24-gradient-gray" | "network-management-24-gradient-yellow" | "network-migration-16-gradient-blue" | "network-migration-16-red" | "network-migration-16-yellow" | "network-security-policy-16-gradient-blue" | "network-security-policy-16-gray" | "network-security-policy-24-blue" | "network-security-policy-24-gradient-blue" | "network-security-policy-24-gray" | "network-security-policy-24-ontint" | "network-storage-16-gradient-blue" | "network-storage-16-red" | "network-storage-16-yellow" | "network-storage-24-gradient-blue" | "network-storage-24-gradient-gray" | "network-storage-24-gradient-purple" | "network-storage-access-16-gradient-blue" | "network-storage-access-16-red" | "network-storage-access-16-yellow" | "network-storage-access-24-gradient-blue" | "network-topo-16-gradient-blue" | "network-topo-16-gradient-gray" | "network-topo-24-gradient-blue" | "network-vm-16-blue" | "network-vm-16-gradient-blue" | "network-vm-16-gradient-red" | "network-vm-16-gradient-yellow" | "nfs-datastore-storage-object-24-gradient-blue" | "nfs-datastore-storage-object-24-gradient-gray" | "nfs-export-16-gradient-blue" | "nfs-export-24-blue" | "nfs-export-24" | "nfs-file-16-gradient-blue" | "nfs-file-24-gradient-blue" | "nfs-file-24-gradient-gray" | "nfs-folder-24-gradient-blue" | "nfs-folder-24-gradient-gray" | "nfs-inode-24-blue" | "nfs-inode-24" | "nic-16-gradient-blue" | "nic-24-blue" | "nic-24-gradient-blue" | "nic-24-gradient-grey" | "nic-24" | "nic-error" | "nic-network-pci-passthrough-16-gradient-blue" | "nic-network-pci-passthrough-16-red" | "nic-network-pci-passthrough-16-yellow" | "nic" | "no-alert-80-gradient-gray" | "no-alert-disconnected-80-gradient-gray" | "no-cache-80-gradient-gray" | "no-critical-alert-80-gradient-gray" | "no-data-recovery-80-gradient-gray" | "no-info-alert-80-gradient-gray" | "no-notice-alert-80-gradient-gray" | "no-storage-80-gradient-gray" | "no-storage-cluster-80-gradient-gray" | "no-vm-80-gradient-gray" | "normal_status" | "not-folder-16-blue" | "not-folder-16" | "notice-attention-16-yellow" | "notice-info-16-blue" | "notice-severe-warning-16-red" | "notice-triangle-fill-16-bold-ontint" | "notice-triangle-fill-16-bold-yellow" | "notice-triangle-fill-16-ontint" | "notice-triangle-fill-16-yellow" | "nvme-namespace-group-24-blue" | "nvme-namespace-group-24-gray" | "nvme-namespace-storage-object-16-gradient-blue" | "nvme-namespace-storage-object-24-blue" | "nvme-namespace-storage-object-24-gray" | "nvme-subsystem-datastore-storage-object-16-gradient-blue" | "nvme-subsystem-datastore-storage-object-24-blue" | "nvme-subsystem-datastore-storage-object-24-gray" | "open-terminal-16-gradient-blue" | "open-terminal-16-gradient-gray" | "open-terminal-16-white" | "open-terminal-16" | "openterminal" | "operations" | "organization-16-blue" | "organization-16-bold-gradient-blue" | "organization-16-bold-gradient-gray" | "organization-16-bold-secondary" | "organization-16-gradient-blue" | "organization-16-gradient-gray" | "organization-16" | "organization-24-gradient-blue" | "organization-24-gradient-gray" | "organization-24-ontint" | "orgnization_activated" | "orgnization_normal" | "os-16-linux-archlinux" | "os-16-linux-centos" | "os-16-linux-debian" | "os-16-linux-fedora" | "os-16-linux-opensuse" | "os-16-linux-oracle-linux" | "os-16-linux-oracle-solaris" | "os-16-linux-redflag" | "os-16-linux-redhat" | "os-16-linux-ubuntu" | "os-16-macos-finder" | "os-16-windows-10" | "os-16-windows-7" | "os-16-windows-8-1" | "os-16-windows-8" | "os-16-windows-98" | "os-16-windows-server-2003" | "os-16-windows-server-2008" | "os-16-windows-server-2012" | "os-16-windows-server-2016" | "os-16-windows-server-2019" | "os-16-windows-vista" | "os-16-windows-xp" | "os-logo-archlinux" | "os-logo-centos" | "os-logo-debian" | "os-logo-deepin" | "os-logo-fedora" | "os-logo-kylin" | "os-logo-macOS" | "os-logo-neoKylin" | "os-logo-openeuler" | "os-logo-opensuse" | "os-logo-oraclelinux" | "os-logo-oraclesolaris" | "os-logo-question" | "os-logo-redflag" | "os-logo-redhat" | "os-logo-rocky" | "os-logo-ubuntu" | "os-logo-uniontech" | "os-logo-unknown" | "os-logo-windows-server-2022" | "os-logo-windows-server" | "os-logo-windows10" | "os-logo-windows11" | "os-logo-windows2000" | "os-logo-windows7" | "os-logo-windows8" | "os-logo-windowsXP" | "os-other-unknown-16-gradient-gray" | "out-max-16" | "password_security" | "password_security_white" | "pause-16-gradient-blue" | "pause-24" | "pci-device-16-gradient-blue" | "pci-device-24-gradient-blue" | "pci-device-24-gradient-gray" | "pci-nic-24-gradient-blue" | "pci-nic-24-gradient-grey" | "permanent-failover-24-blue" | "permanent-transfer-arrow-40-blue" | "physical-disk-16-gradient-blue" | "physical-disk-24-blue" | "physical-disk-24-gradient-blue" | "physical-disk-24-gradient-gray" | "physical-disk-24" | "physical-switch-machine-16-gradient-blue" | "physical-switch-machine-16-gradient-grey" | "physical-switch-machine-24-gradient-blue" | "placeholder-16" | "plus-add-circle-16-blue" | "plus-add-circle-16-secondary" | "plus-add-circle-24-blue" | "plus-add-circle-24-primary" | "plus-add-circle-24-secondary" | "plus-add-circle-disabled-24-gray-secondary" | "plus-add-create-new-16-blue" | "plus-add-create-new-16-bold-blue" | "plus-add-create-new-16-bold-ontint" | "plus-add-create-new-16-bold-secondary" | "plus-add-create-new-16-gray" | "plus-add-create-new-16-light" | "plus-add-create-new-16-ontint" | "plus-add-create-new-16-secondary" | "plus-add-create-new-16-super" | "plus-add-create-new-24-gradient-blue" | "plus-add-create-new-24-gradient-gray" | "plus-add-create-new-circle-fill-16-bold-blue" | "plus-add-create-new-circle-fill-16-bold-ontint" | "plus-add-create-new-circle-fill-24-bold-blue" | "plus-add-create-new-circle-gradient-16-blue" | "plus-add-create-new-small-16-blue" | "plus-add-create-new-small-16-bold-blue" | "plus-add-create-new-small-16-bold-ontint" | "plus-add-create-new-small-16-bold-secondary" | "plus-add-create-new-small-16-ontint" | "plus-add-create-new-small-16-secondary" | "pmem-24-gradient-blue" | "port-network-16-gradient-blue" | "port-network-16-green" | "port-network-16-red" | "port-network-16-yellow" | "port-network-24-blue" | "port-network-24-gradient-blue" | "port-network-24-gradient-gray" | "port-network-24" | "port-quarantine-16-green" | "port-quarantine-16-red" | "port-quarantine-16-yellow" | "port-quarantine-green" | "port-quarantine-red" | "port-quarantine-yellow" | "power-lightning-24-gradient-green" | "power-lightning-24-tertiary" | "power-on-24" | "poweroff-shutdown-stop-16-gradient-blue" | "poweroff-shutdown-stop-16-gradient-gray" | "poweroff-shutdown-stop-16-red" | "poweroff-turn-on-shut-down-16-gradient-red" | "poweron-start-16-gradient-blue" | "poweron-start-16-gradient-gray" | "poweron-start-24-gradient-blue" | "poweron-start-24-gradient-gray" | "poweron-start-new-16-gradient-blue" | "primary-available-zone-16-gradient-grey-outlined" | "primary-available-zone-24-blue" | "primary-to-secondary-16-gradient-blue" | "primary-zone-16-gradient-blue" | "primary-zone-16-ontint" | "progress" | "pswitch-port-16-gradient-blue" | "qos-16-gradient-gray" | "rack-16-gradient-blue" | "rack-24-gradient-blue" | "real-server-pool-16-gradient-blue" | "real-server-pool-24-fill-gradient-blue" | "real-server-pool-24-fill-gradient-grey" | "real-server-pool-24-ontint" | "recieve-16-fill-gradient-others" | "recieve-24-fill-gradient-others" | "recover-continue-16-gradient-blue" | "recover-continue-16-gradient-gray" | "recover-continue-24-gradient-blue" | "recover-recycle-vm-16-gradient-blue" | "recover-recycle-vm-16-gradient-gray" | "recyclebin_clusterSettings_delete_24_red" | "recyclebin_clusterSettings_edit_24_blue" | "refresh-sync-on-tint" | "refresh-sync-tertiary" | "refresh" | "replica-vm-16-gradient-blue" | "replica-vm-24-blue" | "replica-vm-24-ontint" | "replica-vm-failback-state-16" | "replica-vm-failover-state-16" | "replica-vm-failover-test-16" | "replica-vm-not-ready-16" | "replica-vm-permanent-failover-state-16" | "replica-vm-ready-16" | "replica-vm-replicating-16" | "replica-vm-unknow-16" | "replication-plan-16-gray" | "replication-plan-24-blue" | "replication-plan-24-gray" | "replication-plan-24-ontint" | "replication-plan-origin-vm-null-24" | "replication-plan-origin-vm-running-24" | "replication-plan-origin-vm-stopped-24" | "replication-plan-origin-vm-suspended-24" | "replication-plan-origin-vm-unknown-24" | "replication-plan-replica-vm-null-16-blue" | "replication-plan-replica-vm-null-24-blue" | "replication-plan-replica-vm-null-24" | "replication-plan-replica-vm-running-24" | "replication-plan-replica-vm-stopped-24" | "replication-plan-replica-vm-suspended-24" | "replication-plan-replica-vm-unknown-24" | "replication-service-24-blue" | "replication-service-24-ontint" | "report-form-24-blue" | "report-form-24-gradient-blue" | "report-form-24-gradient-gray" | "report-form-24-gradient-white" | "report-form-24" | "report-form-template-file-24-gradient-blue" | "report-form-template-file-24-gradient-gray" | "report-form-template-file-24-gradient-white" | "reslice-16-gradient-blue" | "reslice-16-ontint" | "reslice-sriov-16-blue" | "resource-optimization-24-blue" | "resource-optimization-24-gradient-blue" | "resource-optimization-24-gradient-gray" | "resource-optimization-24-gradient-ontint" | "resource-optimization-24" | "resource_custom_composite_filter_blue" | "resource_custom_composite_filter_white" | "resource_custom_dead_vm_blue" | "resource_custom_dead_vm_white" | "resource_custom_memory_vm_blue" | "resource_custom_memory_vm_white" | "resource_custom_vcpu_vm_blue" | "resource_custom_vcpu_vm_white" | "resource_custom_zombie_vm_blue" | "resource_custom_zombie_vm_white" | "resource_dead_vm_blue" | "resource_dead_vm_white" | "resource_memory_vm_blue" | "resource_memory_vm_white" | "resource_vcpu_vm_blue" | "resource_vcpu_vm_white" | "resource_zombie_vm_blue" | "resource_zombie_vm_white" | "restart-16-gradient-blue" | "restart-16-gradient-gray" | "restart-16" | "restart-24" | "restart-new-16-gradient-blue" | "restart-new-16-gradient-gray" | "restart" | "resume-24" | "resume" | "retain-snapshot-group-16-blue" | "retry-16-blue" | "retry-16-gradient-blue" | "retry-16-gradient-gray" | "retry-16-ontint" | "retry-16-secondary" | "right-circle-arrow" | "router-table-16-gradient-blue" | "router-table-16-gradient-grey" | "router-table-16-ontint" | "router-table-24-gradient-blue" | "router-table-24-gradient-grey" | "router-table-24-ontint" | "rule-optimization-io-square-24-gradient-blue" | "rule-optimization-io-square-24-gradient-gray" | "rule-optimization-power-state-square-24-gradient-blue" | "rule-optimization-power-state-square-24-gradient-gray" | "rule-optimization-ram-24-gradient-blue" | "rule-optimization-ram-24-gradient-gray" | "rule-optimization-ram-square-24-gradient-blue" | "rule-optimization-ram-square-24-gradient-gray" | "rule-optimization-square-24-gradient-blue" | "rule-optimization-square-24-gradient-gray" | "rule-optimization-square-stack-2-24-gradient-blue" | "rule-optimization-square-stack-2-24-gradient-gray" | "rule-optimization-square-stack-2-24-ontint" | "rule-optimization-vcpu-24-gradient-blue" | "rule-optimization-vcpu-24-gradient-gray" | "rule-optimization-vcpu-square-24-gradient-blue" | "rule-optimization-vcpu-square-24-gradient-gray" | "rule-optimization-zombie-24-gradient-blue" | "rule-optimization-zombie-24-gradient-gray" | "search-16-blue" | "search-16-gradient-blue" | "search-16-gradient-gray" | "search-16-ontint" | "search-16-secondary" | "search-16-tertiary" | "search-24-blue" | "search-24-gradient-blue" | "search-24-gradient-gray" | "search-24" | "search-fill-24-gradient-gray" | "secondary-available-zone-16-gradient-grey-outlined" | "secondary-available-zone-24-blue" | "secondary-to-primary-16-gradient-blue" | "secondary-zone-16-gradient-blue" | "secondary-zone-16-ontint" | "security-group-16-gradient-blue" | "security-group-16-gradient-gray" | "security-group-24-gradient-blue" | "security-group-24-gradient-gray" | "security-group-24-gradient-white" | "security-group-24-ontint" | "security-service-16-gradient-blue" | "security-service-16-gradient-grey" | "security-service-16-ontint" | "security-service-24-gradient-blue" | "security-service-24-gradient-grey" | "security-service-24-ontint" | "selected-objects-square-grid-3x3-24-gradient-blue" | "selected-objects-square-grid-3x3-24-gradient-gray" | "send-16-fill-gradient-others" | "send-24-fill-gradient-others" | "session_expiration_blue" | "session_expiration_white" | "settings-gear-16-gradient-blue" | "settings-gear-16-gradient-gray" | "settings-gear-16-secondary" | "settings-gear-24-gradient-blue" | "settings-gear-24-gradient-gray" | "settings-gear-24-white" | "settings-gear-fill-16-gradient-blue" | "settings-gear-fill-16-gradient-gray" | "settings-gear-fill-24-gradient-blue" | "settings-gear-fill-24-gradient-gray" | "settings-gear-user-personal-24-gradient-blue" | "settings-gear-user-personal-24-gradient-gray" | "shared-virtual-volume-24-gradient-blue" | "shared-virtual-volume-24-gradient-gray" | "shared-volume-24-blue" | "shared-volume-24" | "showdiff-16-gradient-blue" | "showdiff-16-gradient-gray" | "showdiff-16" | "shutdown-16" | "shutdown-24" | "sks-business-nic-24" | "sks-control-plane-24" | "sks-dhcp-config-24" | "sks-download-kubeconfig-24-blue" | "sks-download-kubeconfig-24-gray" | "sks-download-kubeconfig" | "sks-ecp-nic-24" | "sks-ip-pool-24-blue" | "sks-ip-pool-24-white" | "sks-ip-range-24" | "sks-management-cluster-16-gray" | "sks-management-cluster-24-blue" | "sks-management-cluster-24-white" | "sks-monitoring-24-blue" | "sks-monitoring-24-white" | "sks-node-24" | "sks-node-group-24" | "sks-node-group" | "sks-node-template-24-blue" | "sks-node-template-24-white" | "sks-node" | "sks-persistent-volume-24" | "sks-persistent-volume" | "sks-replace-node" | "sks-rollback-cluster" | "sks-service-upgrade-24-blue" | "sks-service-upgrade-24-white" | "sks-storage-class-24" | "sks-storage-class" | "sks-upgrade-cluster-24" | "sks-upgrade-cluster" | "sks-worker-24" | "sks-workload-cluster-16-gray" | "sks-workload-cluster-blue-24" | "sks-workload-cluster-white-24" | "sks-zbs-csi-24-blue" | "sks-zbs-csi-24-white" | "sks-zbs-nic-24" | "smartx-logo" | "smtp-mail-24-gradient-blue" | "smtp-mail-24-gradient-gray" | "smtp-mail-24-ontint" | "snapshot-16-gradient-blue" | "snapshot-24-gradient-blue" | "snapshot-24-gradient-gray" | "snapshot-rollback-general-16-blue" | "snapshot-rollback-general-24-blue" | "snapshot-vm-rollback-16-blue" | "snmp-24-gradient-blue" | "snmp-24-gradient-gray" | "snmp-trap-24-blue" | "software-license-24-gradient-blue" | "software-license-24-gradient-gray" | "software-license-24-ontint" | "software-license-24" | "sriov-nic-24-gradient-blue" | "sriov-nic-24-gradient-grey" | "ssd-disk-24-gradient-blue" | "star-16-fill-gray" | "star-16-gray" | "start" | "status-running-triangle-16-gradient-green" | "status-stopped-poweredoff-shutdown-square-16-gray" | "status-suspended-paused-16-gradient-yellow" | "status-unavailable-16" | "status-unknown-questionmark-16-red" | "stop-flash-light-16-gradient-blue" | "stop" | "suspend" | "suspended-pause-16-gradient-blue" | "suspended-pause-16-gradient-gray" | "suspended-pause-16-gradient-orange" | "suspended-pause-24-gradient-orange" | "syslog-24-gradient-blue" | "syslog-24-ontint" | "system-event-auditing-24-blue" | "system-event-auditing-24-ontint" | "system-service-vm-16-yellow" | "system-service-vm-16" | "tag-16-gradient-blue" | "tag-16-gradient-gray" | "tag-24-gradient-blue" | "task-center-24-blue" | "task-center-24-gradient-blue" | "task-center-24-gradient-gray" | "task-center-24" | "task-center-fill-24-blue" | "task-center-fill-24-gradient-blue" | "task-center-fill-24-gradient-gray" | "task-center-fill-24-gradient-green" | "task-center-fill-24-gradient-red" | "task-center-fill-24-gradient-yellow" | "task-center-fill-24" | "task-preview" | "task" | "topn-24-gradient-blue" | "topn-24-gradient-gray" | "trash-bin-delete-16-red" | "trash-bin-delete-16" | "trash-bin-delete-24-red" | "trash-bin-delete-24" | "trash-bin-opened-delete-16-red" | "trash-bin-opened-delete-24-red" | "trash-bin-opened-delete-24" | "trash-bin-slash-24-red" | "trash-move-to-recycle-24-gradient-blue" | "trash-move-to-recycle-24-gradient-red" | "triangle-exclamation" | "unfold-16-regular-secondary" | "unfold-col-cards-16-regular-blue" | "unfold-col-cards-16-regular-secondary" | "unmounted" | "unopened_status" | "upload-21-17-gradient-blue" | "upload-24-gradient-blue" | "upload-24-gradient-gray" | "upload-24-ontint" | "upload-48-gradient-blue" | "upload-outline-24-ontint" | "uploading-16-gradient-blue" | "uploading-16-gradient-gray" | "uploading-16-ontint-blue" | "uploading-16-ontint" | "uploading-24-gradient-blue" | "uploading-24-gradient-gray" | "uploading-fill-24-blue" | "uploading-fill-24-gradient-blue" | "uploading-fill-24-gradient-gray" | "uploading-fill-24" | "usb-16-gradient-blue" | "usb-24-gradient-blue" | "usb-24-gradient-gray" | "usb-mount-16-blue" | "usb-unmount-16-red" | "user-account-24-blue" | "user-account-24-gradient-blue" | "user-account-24-gradient-gray" | "user-account-24-ontint" | "user-account-24" | "user-action-24-blue" | "user-action-24-ontint" | "user-event-auditing-24-blue" | "user-event-auditing-24-ontint" | "user-logout-24-blue" | "user-role-24-blue" | "user-role-24-white" | "user" | "user_account" | "user_account_security" | "user_account_security_white" | "user_account_white" | "vds-16-gradient-blue" | "vds-24-blue" | "vds-24" | "view-eye-16-gray" | "view-eye-24-gradient-blue" | "view-eye-24-gradient-gray" | "virtual-distributed-switch-machine-16-gradient-blue" | "virtual-distributed-switch-machine-16-red" | "virtual-distributed-switch-machine-16-yellow" | "virtual-distributed-switch-machine-24-gradient-blue" | "virtual-distributed-switch-machine-24-gradient-gray" | "virtual-distributed-switch-machine-24-red" | "virtual-distributed-switch-machine-24-yellow" | "virtual-network-16-gradient-blue" | "virtual-nic-network-16-gradient-blue-enabled-on" | "virtual-nic-network-16-gradient-grey-enabled-off" | "virtual-nic-network-16-red-enabled-on" | "virtual-nic-network-16-yellow-enabled-on" | "virtual-nic-network-24-gradient-blue" | "virtual-nic-network-24-gradient-gray" | "virtual-nic-network-vf-sriov-16-gradient-blue" | "virtual-nic-network-vf-sriov-16-red" | "virtual-nic-network-vf-sriov-16-yellow" | "virtual-server-24-fill-gradient-blue" | "virtual-server-24-fill-gradient-grey" | "virtual-server-24-fill-ontint" | "virtual-volume-16-gradient-blue" | "virtual-volume-16-gray" | "virtual-volume-24-gradient-blue" | "virtual-volume-24-gradient-gray" | "virtual-volume-add-plus-16-gradient-gray" | "virtual-volume-add-plus-16-secondary" | "virtual-volume-add-plus-24-gradient-blue" | "virtual-volume-add-plus-24-gradient-gray" | "virtual-volume-snapshot-24-gradient-blue" | "virtual-volume-snapshot-24-gradient-gray" | "vm-16-gradient-blue" | "vm-16-yellow" | "vm-16" | "vm-24-blue" | "vm-24-gradient-blue" | "vm-24-gradient-gray" | "vm-24-primary" | "vm-24" | "vm-clone-16" | "vm-connection-allowed-24" | "vm-connection-connect-24" | "vm-connection-disconnect-24" | "vm-connection-not-allowed-24" | "vm-folder-16-blue" | "vm-folder-16" | "vm-folder-24-blue" | "vm-icon-16-yellow" | "vm-icon-24-blue" | "vm-migrate-16" | "vm-placement-group-16-gradient-blue" | "vm-placement-group-24-gradient-blue" | "vm-placement-group-host-14-6-gradient-blue" | "vm-placement-group-host-14-6-gradient-gray" | "vm-quarantine-16-gradient-blue" | "vm-quarantine-16-gradient-gray" | "vm-quarantine-24-gradient-blue" | "vm-quarantine-24-white" | "vm-recycle-bin-move-to-bin-16-red" | "vm-recycle-bin-move-to-bin-24-red" | "vm-recycle-bin-permanent-delete-24-red" | "vm-restart-16" | "vm-resume-16" | "vm-shutdown-16" | "vm-snapshot-16-gradient-blue" | "vm-snapshot-24-gradient-blue" | "vm-snapshot-24-gradient-gray" | "vm-start-16" | "vm-status-running-16" | "vm-status-stopped-16" | "vm-status-suspended-16" | "vm-status-unknow-16" | "vm-suspended-16" | "vm-template-16-gradient-blue" | "vm-template-24-blue" | "vm-template-24" | "vm-tools-16" | "vm-volume-16-gradient-blue" | "vm-volume-24-blue" | "vm-volume-24" | "vm-volume-add-plus-16" | "vm" | "vmgroup-folder-16-gradient-blue" | "vmgroup-folder-16-gradient-gray" | "vmgroup-folder-24-gradient-blue" | "vmgroup-folder-24-gradient-gray" | "vmgroup-folder-fill-16-ontint" | "vmgroup-folder-gradient-blue-24" | "vmgroup-folder-not-grouped-16-gradient-blue" | "vmgroup-folder-not-grouped-16-gradient-gray" | "vmgroup-folder-not-grouped-24-gradient-blue" | "vmgroup-folder-not-grouped-24-gradient-gray" | "vmgroup-folder-not-grouped-fill-16-ontint" | "vmnetwork-16-gradient-blue" | "vmnetwork-16-gradient-gray" | "vmnetwork-24-gradient-blue" | "vmnetwork-24-gradient-gray" | "vmtemplat-convert-16-gradient-blue" | "vmtemplat-convert-16-gradient-gray" | "vmtemplate-16-gradient-yellow" | "vmtemplate-24-gradient-blue" | "vmtemplate-24-gradient-gray" | "vmtemplate-24-gradient-ontint" | "vmtemplate-clone-16-gradient-blue" | "vmtemplate-clone-16-gradient-gray" | "vmtemplate-convert-vm-16-gradient-blue" | "vmtemplate-create-16-gradient-blue" | "vmtemplate-create-16-gradient-gray" | "vmtools-16-gradient-blue-1" | "vmtools-16-gradient-blue" | "vmtools-16-gradient-gray" | "vmtools-24-gradient-blue" | "vmtools-24-gradient-green" | "vmtools-24-ontint" | "vpc-16-gradient-blue" | "vpc-16-gradient-grey" | "vpc-16-ontint" | "vpc-24-gradient-blue" | "vpc-24-gradient-grey" | "vpc-24-ontint" | "vpc-peering-16-gradient-blue" | "vpc-peering-16-gradient-grey" | "vpc-peering-16-ontint" | "vpc-peering-24-gradient-blue" | "vpc-peering-24-gradient-grey" | "vpc-peering-24-ontint" | "vpc-subnet-16-gradient-blue" | "vpc-subnet-16-gradient-grey" | "vpc-subnet-16-ontint" | "vpc-subnet-24-gradient-blue" | "vpc-subnet-24-gradient-grey" | "vpc-subnet-24-ontint" | "waiting-breathing-led-16-blue" | "waiting-breathing-led-16-yellow" | "witness-node-normal-critical-red" | "witness-node-normal-healthy-green" | "witness-node-normal-info-blue" | "witness-node-normal-notice-yellow" | "witness-node-small-critical-red" | "witness-node-small-healthy-green" | "witness-node-small-info-blue" | "witness-node-small-notice-yellow" | "xlsx" | "xmark-clear-fill-24-secondary" | "xmark-clear-fill-24-tertiary" | "xmark-close-fill-24-primary" | "xmark-failed-16-bold-ontint" | "xmark-failed-16-bold-red" | "xmark-failed-16-ontint" | "xmark-failed-16-red" | "xmark-failed-24-bold-red" | "xmark-failed-serious-warning-fill-16-bold-ontint" | "xmark-failed-serious-warning-fill-16-bold-red" | "xmark-failed-serious-warning-fill-16-ontint" | "xmark-failed-serious-warning-fill-16-red" | "xmark-remove-16-blue" | "xmark-remove-16-bold-ontint" | "xmark-remove-16-primary" | "xmark-remove-16-regular-blue-caps-on" | "xmark-remove-16-regular-red" | "xmark-remove-16-regular-secondary-caps-on" | "xmark-remove-16-secondary" | "xmark-remove-24-blue" | "xmark-remove-24-primary" | "xmark-remove-24-secondary" | "xmark-remove-small-16-blue" | "xmark-remove-small-16-regular-inherit" | "xmark-remove-small-16-regular-ontint" | "xmark-remove-small-16-secondary"
|
1
|
+
export type ImagesType = | "Alert" | "App_Store" | "Backup" | "ContainerService" | "Event" | "IO-BandWidth" | "Infrastructure" | "Large_Display" | "NavTask" | "NetworkSecurity" | "Placeholder" | "Recycle_Bin" | "Report" | "Resource_Optimization" | "Setting" | "Settings" | "Smtx_Inspector" | "Snapshot" | "Tag" | "TrafficVisualization" | "abnormal_status" | "access_restriction" | "access_restriction_white" | "active-add-14-gradiendt-blue" | "active-connection-16-gradiendt-blue" | "active-observability-service-18-blue" | "active-observability-service-18-gray" | "active-observability-service-24-blue" | "active-observability-service-24-gray" | "active-uninstal-14-gradiendt-red" | "adjust-config-16-gradient-blue" | "adjust-config-16-gradient-gray" | "advance-blue" | "advance" | "agent-mesh-24-ontint" | "agent-mesh-gradient-24-blue" | "agent-mesh-gradient-24-grey" | "agent-mesh-upgrade-24-blue" | "agent-mesh-upload-48-blue" | "alert-bell-16-gradient-blue" | "alert-bell-24-blue" | "alert-bell-24-gradient-blue" | "alert-bell-24-gradient-gray" | "alert-bell-24" | "alert-bell-arrow-24-gradient-blue" | "alert-bell-arrow-24-ontint" | "alert-bell-fill-24-blue" | "alert-bell-fill-24-gradient-blue" | "alert-bell-fill-24-gradient-gray" | "alert-bell-fill-24-gradient-red" | "alert-bell-fill-24-gradient-yellow" | "alert-bell-fill-24" | "alert-bell-outlined-16-gradient-blue" | "alert-bell-outlined-16-gradient-gray" | "alert-bell-resolved-24-blue" | "alert-bell-resolved-24-gradient-blue" | "alert-bell-resolved-24-gradient-gray" | "alert-bell-resolved-24-ontint" | "alert-bell-resolved-24" | "alert-bell-rule-24-blue" | "alert-bell-rule-24-gray" | "alert-bell-rule-24" | "alert-bell-rule-gear-24-gradient-blue" | "alert-bell-rule-gear-24-gradient-gray" | "alert-bell-rule-gear-24-ontint" | "alert-bell-unresolved-24-gradient-blue" | "alert-bell-unresolved-24-gradient-gray" | "alert-bell-unresolved-24-ontint" | "alert-gradient-bell-unresolved-24-blue" | "alert-gradient-bell-unresolved-24" | "alert-mail-notification-24-gradient-blue" | "alert-mail-notification-24-ontint" | "all-menu-16-blue" | "all-menu-16-gradient-blue" | "all-menu-16-gray" | "arrow-bold-down-16-blue" | "arrow-bold-down-16-white" | "arrow-bold-down-16" | "arrow-bold-left-16-blue" | "arrow-chevron-down-16-blue" | "arrow-chevron-down-16-bold-blue" | "arrow-chevron-down-16-bold-ontint" | "arrow-chevron-down-16-bold-secondary" | "arrow-chevron-down-16-ontint" | "arrow-chevron-down-16-secondary" | "arrow-chevron-down-small-16-blue" | "arrow-chevron-down-small-16-bold-blue" | "arrow-chevron-down-small-16-bold-ontint" | "arrow-chevron-down-small-16-bold-secondary" | "arrow-chevron-down-small-16-ontint" | "arrow-chevron-down-small-16-secondary" | "arrow-chevron-left-16-bold-blue" | "arrow-chevron-left-16-bold-ontint" | "arrow-chevron-left-16-bold-secondary" | "arrow-chevron-left-16-bold-super" | "arrow-chevron-left-16-bold-tertiary" | "arrow-chevron-left-16-ontint-1" | "arrow-chevron-left-16-ontint" | "arrow-chevron-left-16-secondary" | "arrow-chevron-left-small-16-blue" | "arrow-chevron-left-small-16-bold-blue" | "arrow-chevron-left-small-16-bold-ontint" | "arrow-chevron-left-small-16-bold-secondary" | "arrow-chevron-left-small-16-ontint-1" | "arrow-chevron-left-small-16-ontint" | "arrow-chevron-right-16-blue" | "arrow-chevron-right-16-bold-blue" | "arrow-chevron-right-16-bold-ontint" | "arrow-chevron-right-16-bold-secondary" | "arrow-chevron-right-16-ontint" | "arrow-chevron-right-16-secondary" | "arrow-chevron-right-small-16-blue" | "arrow-chevron-right-small-16-bold-blue" | "arrow-chevron-right-small-16-bold-ontint" | "arrow-chevron-right-small-16-bold-secondary" | "arrow-chevron-right-small-16-ontint" | "arrow-chevron-right-small-16-secondary" | "arrow-chevron-up-16-blue" | "arrow-chevron-up-16-bold-blue" | "arrow-chevron-up-16-bold-ontint" | "arrow-chevron-up-16-bold-secondary" | "arrow-chevron-up-16-ontint" | "arrow-chevron-up-16-secondary" | "arrow-chevron-up-small-16-blue" | "arrow-chevron-up-small-16-bold-blue" | "arrow-chevron-up-small-16-bold-ontint" | "arrow-chevron-up-small-16-bold-secondary" | "arrow-chevron-up-small-16-ontint" | "arrow-chevron-up-small-16-secondary" | "arrow-down-16-blue" | "arrow-down-16-grey" | "arrow-down-16" | "arrow-down-24" | "arrow_right_gray" | "backup-plan-24-blue" | "backup-plan-24-gray" | "backup-plan-24-ontint" | "backup-service-24-blue" | "backup-service-24-gradient-blue" | "backup-service-24-gray" | "backup-service-24-ontint" | "backup-store-repository-24-blue" | "backup-store-repository-24-gray" | "backup-store-repository-24-ontint" | "bar-chart-red-fail-icon-12" | "bell" | "bell_grey" | "bonding-16-gradient-blue" | "bonding-16-red" | "bonding-16-yellow" | "calendar-clock-date-time-24-gradient-blue" | "calendar-clock-date-time-24-gradient-gray" | "calendar-clock-date-time-24-secondary" | "calendar-date-24-gradient-blue" | "calendar-date-24-gradient-gray" | "calendar-date-24-secondary" | "calendar-time-record-16" | "caret-triangle-down-16" | "caret-triangle-down-large-16-blue" | "caret-triangle-down-large-16-ontint" | "cdrom-24-blue" | "cdrom-24" | "cdrom-disc-24-gradient-blue" | "cdrom-disc-24-gradient-gray" | "certificate-identity-24-gradient-blue" | "certificate-identity-24-gradient-gray" | "certificate-ssl-24-gradient-blue" | "certificate-ssl-24-gradient-gray" | "chain-associate-connect-16-bold-ontint" | "chain-associate-connect-16-gradient-blue" | "chain-associate-connect-24-gradient-blue" | "chain-associate-connect-24-gradient-gray" | "chain-connect-16-gradient-blue" | "chain-disassociate-disconnect-break-16-bold-ontint" | "chain-disassociate-disconnect-break-24-gradient-blue" | "chain-disassociate-disconnect-break-24-gradient-gray" | "chain-disassociate-disconnect-break-24-red" | "chart-line-24-gradient-blue" | "chart-line-24-gradient-gray" | "chart-stacking-area-24-gradient-blue" | "chart-stacking-area-24-gradient-gray" | "check-green" | "checkmark-added-circle-fill-16-blue" | "checkmark-added-circle-fill-16-secondary" | "checkmark-added-circle-fill-24-blue" | "checkmark-added-circle-fill-24-primary" | "checkmark-done-success-circle-fill-16-bold-green" | "checkmark-done-success-circle-fill-16-bold-ontint" | "checkmark-done-success-circle-fill-16-green" | "checkmark-done-success-circle-fill-16-ontint" | "checkmark-done-success-circle-fill-24-green" | "checkmark-done-success-circle-fill" | "checkmark-done-success-correct-16-blue" | "checkmark-done-success-correct-16-bold-blue" | "checkmark-done-success-correct-16-bold-green" | "checkmark-done-success-correct-16-bold-ontint" | "checkmark-done-success-correct-16-bold-secondary" | "checkmark-done-success-correct-16-green" | "checkmark-done-success-correct-16-ontint" | "checkmark-done-success-correct-16-secondary" | "checkmark-done-success-correct-16-tertiary" | "checkmark-done-success-correct-24-bold-green" | "checkmark-solved-circle-16-blue" | "checkmark-solved-circle-16-super" | "clipboard-copy-16-gradient-blue" | "clipboard-copy-16-gradient-gray" | "clipboard-copy-24-gradient-blue" | "clipboard-copy-24-gradient-gray" | "clock-time-16-gradient-blue" | "clock-time-16-gradient-gray" | "clock-time-16-secondary" | "clock-time-24-gradient-blue" | "clock-time-24-gradient-gray" | "clock-time-24-secondary" | "clock" | "clone-16-gradient-blue" | "clone-16-gradient-gray" | "clone" | "close-red" | "close" | "cloudtower-logo-text" | "cluster-16-blue" | "cluster-16-gradient-blue" | "cluster-16-gradient-gray" | "cluster-16-ontint" | "cluster-16" | "cluster-24-blue" | "cluster-24-gradient-blue" | "cluster-24-gradient-gray" | "cluster-24-ontint" | "cluster-24" | "cluster-blue" | "cluster-disconnected-16-blue" | "cluster-fill-16-ontint" | "cluster-fill-24-ontint" | "cluster-gray" | "cluster-outline-16-ontint" | "cluster-primary-16" | "cluster-upgrade-24-gradient-blue" | "cluster-upgrade-24-gradient-gray" | "cluster-upgrade-24-ontint" | "cluster" | "cluster_activated" | "cluster_normal" | "consistency-consistent-group-16-gradient-blue" | "consistency-group-24-gradient-blue" | "consistency-group-24-gradient-gray" | "container-registry-24-blue" | "container-registry-24-ontint" | "container-registry-32-colorful" | "copy-to-ellipsis-3-24-gradient-blue" | "copy-to-ellipsis-3-24-gradient-gray" | "cpu-temperature-critical" | "cpu-temperature-normal" | "cpu-temperature-warning" | "cpu-usage-16-blue" | "create-blank-vm-add-plus-24-gradient-blue" | "create-blank-vm-add-plus-24-gradient-gray" | "create-host-24-gradient-blue" | "create-placement-group-24-gradient-blue" | "create-security-policy-24-gradient-blue" | "create-security-policy-24-gradient-grey" | "create-vm-template-16" | "create-vm-via-template-24-gradient-blue" | "create-vmtemplate-add-plus-24-gradient-blue" | "create-vmtemplate-add-plus-24-gradient-gray" | "createvmtemplate" | "cross" | "csv" | "curve-link-24" | "dashboard-16-gradient-blue" | "dashboard-16-gradient-gray" | "dashboard-24-gradient-blue" | "dashboard-24-gradient-gray" | "dashboard-24-white" | "data-migration-24-blue" | "data-migration-24-ontint" | "data-recovery-24-blue" | "data-recovery-24-ontint" | "datacenter-16-blue" | "datacenter-16-gradient-blue" | "datacenter-16-gradient-gray" | "datacenter-16" | "datacenter-24-blue" | "datacenter-24-gradient-blue" | "datacenter-24-gradient-gray" | "datacenter-24-primary" | "datacenter-24" | "datacenter-empty-connect-center-16-gradient-blue" | "datacenter-fill-16-ontint" | "datacenter" | "datacenter_activated" | "datacenter_normal" | "delete" | "directory" | "disable-24-gradient-blue" | "disable-24-gradient-gray" | "disabled-16" | "disabled-nic-24-gradient-blue" | "disconnect-cluster-24-red" | "disconnected-cluster-16-gray" | "disconnected-cluster-16-ontint" | "disk-mount-16" | "disk-unmount-16-red" | "disk" | "distribute-16-gradient-blue" | "distribute-16-gradient-gray" | "dot-interval-separation-16-tertiary" | "down" | "download-16-gradient-blue" | "download-16-gradient-gray" | "download-24-gradient-blue" | "download-24-gradient-gray" | "download" | "drs-widget-empty-state" | "dynamic-resource-schedule-16-blue" | "dynamic-resource-schedule-16-ontint" | "dynamic-resource-schedule-24-blue" | "dynamic-resource-schedule-24-ontint" | "edge-gateway-24-gradient-blue" | "edge-gateway-24-gradient-grey" | "edge-gateway-24-gradient-ontint" | "edit-open-24-blue" | "edit-open-24" | "edit-pen-16-blue" | "edit-pen-16-bold-ontint" | "edit-pen-16-gradient-blue" | "edit-pen-16-gradient-gray" | "edit-pen-16-primary" | "edit-pen-16" | "edit-pen-24-gradient-blue" | "edit-pen-24-gradient-gray" | "edit-pen-on-tint" | "editvm" | "eject-16-gradient-blue" | "eject-16-gradient-gray" | "eject-16-red" | "eject-16-secondary" | "eject-24-gradient-blue" | "eject-24-gradient-gray" | "eject-24-secondary" | "enable-16-blue" | "enable-16-gray" | "enable-24-blue" | "enable-24-gray" | "entityFilter-ignore-gradient-16-gray" | "error-exclamation" | "error" | "event-auditing-16" | "event-auditing-24-blue" | "event-auditing-24-ontint" | "everoute-cluster-24-gradient-blue" | "everoute-cluster-24-gradient-grey" | "everoute-cluster-24-ontint" | "everoute-controller-16-gradient-gray" | "everoute-controller-24" | "everoute-services-16-gradient-blue" | "everoute-services-16-gradient-grey" | "everoute-services-24-gradient-blue" | "everoute-services-24-ontint" | "exclamation-error-circle-16-ontint" | "exclamation-error-circle-16-red" | "exclamation-error-circle-fill-16-ontint" | "exclamation-error-circle-fill-16-red" | "exclamation-error-circle-solid-16-red-white" | "exclamtion-mark-16-ontint" | "export-16-gradient-blue" | "export-16-gradient-gray" | "export-16-regular-ontint" | "export-24-gradient-blue" | "export-24-gradient-gray" | "export-24-secondary" | "export-24" | "export-file-16-gradient-blue" | "export-file-16-gradient-gray" | "export-file-16-ontint" | "export-file-24-gradient-blue" | "export-vm-24-gradient-blue" | "export-vm-24-gradient-gray" | "export-vm-24-ontint" | "export-vm-template-24-gradient-blue" | "export-vm-template-24-gradient-gray" | "export-vm-template-24-ontint" | "export-volume-24-gradient-blue" | "export-volume-24-gradient-gray" | "export-volume-24-ontint" | "external-subnet-24-gradient-blue" | "external-subnet-24-gradient-grey" | "external-subnet-24-ontint" | "failback-24-blue" | "failover-24-blue" | "file-16-gradient-blue" | "file_normal" | "filter-16-blue-solid" | "filter-16-blue" | "filter-16-gradient-blue-outlined" | "filter-16-secondary-outlined" | "filter-16-secondary-solid" | "filter-24-gradient-blue" | "filter-24-gradient-gray" | "filter-gear-display-setting-24-gradient-blue" | "filter-gear-display-setting-24-gradient-gray" | "filter-secondary-16" | "filter_activated" | "filter_modified" | "filter_normal" | "fit-to-screen-16" | "flash-light-16-gradient-blue" | "float-ip-16-gradient-blue" | "float-ip-16-gradient-grey" | "float-ip-16-ontint" | "float-ip-24-gradient-blue" | "float-ip-24-gradient-grey" | "float-ip-24-ontint" | "focus-indicator-16-blue" | "fold-16-regular-secondary" | "fold-col-cards-16-regular-blue" | "fold-col-cards-16-regular-secondary" | "folder" | "folder_activated" | "folder_normal" | "forcerestart" | "forcestop" | "from-left-arrow-40-blue" | "from-right-arrow-40-blue" | "full-period-24-gradient-gray" | "fullscreen-16" | "gateway-service-16-gradient-blue" | "gateway-service-16-gradient-grey" | "gateway-service-16-ontint" | "gateway-service-24-gradient-blue" | "gateway-service-24-gradient-grey" | "gateway-service-24-ontint" | "generate-snapshot-immediately-16-blue" | "global-configuration-24-gradient-blue" | "global-configuration-24-ontint" | "global-policy-24-gradient-blue" | "gpu-device-16-gradient-blue" | "gpu-device-16-gradient-grey" | "gpu-device-24-gradient-blue" | "gpu-device-24-gradient-grey" | "ha-triggered-24-blue" | "ha-triggered-24-ontint" | "handle-point-8-16-blue" | "handle-point-8-16-secondary" | "handle-point-8-24-blue" | "handle-point-8-24-secondary" | "hardware" | "hdd-disk-24-gradient-blue" | "hierarchy-triangle-right-16-blue" | "hierarchy-triangle-right-16-gray" | "hierarchy-triangle-right-16-primary" | "host-16-blue" | "host-16-gradient-blue" | "host-16-gradient-gray" | "host-16-ontint" | "host-16-yellow" | "host-16" | "host-24-blue" | "host-24-gradient-blue" | "host-24-gradient-gray" | "host-24-yellow" | "host-24" | "host-fill-16-ontint" | "host-quarantine-16-secondary" | "host" | "host_activated" | "host_normal" | "ignore-24-gradient-blue" | "ignore-24-gradient-gray" | "import-security-policy-24-gradient-blue" | "import-security-policy-24-gradient-gray" | "import-vm-24-gradient-blue" | "import-vm-24-gradient-gray" | "import-vm-24-ontint" | "import-vm-template-24-gradient-blue" | "import-vm-template-24-gradient-gray" | "import-vm-template-24-ontint" | "import-volume-24-gradient-blue" | "import-volume-24-gradient-gray" | "import-volume-24-ontint" | "in-max-16" | "info-circle-24-blue" | "info-circle-24" | "info-circle-fill" | "info-i-circle-16-gradient-blue" | "info-i-circle-16-gradient-gray" | "info-i-circle-16-on-tint" | "info-i-circle-24-gradient-blue" | "info-i-circle-24-gradient-gray" | "info-i-circle-24-ontint" | "info-i-circle-24-secondary" | "info-i-circle-fill-16-blue" | "info-i-circle-fill-16-bold-blue" | "info-i-circle-fill-16-bold-ontint" | "info-i-circle-fill-16-ontint" | "info-i-circle-fill-16-quaternary" | "info-i-circle-fill-16-secondary" | "info-normal" | "info" | "install-24-gradient-blue" | "install-24-gradient-gray" | "installation-package-24-gradient-blue" | "installation-package-24-ontint" | "installtools" | "ip-24" | "iscsi-datastore-storage-object-16-gradient-blue" | "iscsi-datastore-storage-object-24-gradient-blue" | "iscsi-datastore-storage-object-24-gradient-gray" | "iscsi-lun-16-gradient-blue" | "iscsi-lun-16-yellow" | "iscsi-lun-24-blue" | "iscsi-lun-24-gradient-blue" | "iscsi-lun-24-gradient-gray" | "iscsi-lun-24" | "iscsi-target-16-gradient-blue" | "iscsi-target-24-blue" | "iscsi-target-24" | "iso-24-blue" | "iso-24" | "iso-blue" | "iso-image-disc-16-gradient-blue" | "iso-image-disc-16-gradient-yellow" | "iso-image-disc-24-gradient-blue" | "iso-image-disc-24-gradient-gray" | "iso-image-disc-24-ontint" | "iso" | "isolation-16-blue" | "isolation-24-blue" | "l2-gw-16-gradient-blue" | "l2-gw-16-gradient-grey" | "l2-gw-16-ontint" | "l2-gw-24-gradient-blue" | "l2-gw-24-gradient-grey" | "l2-gw-24-ontint" | "l3-router-16-gradient-blue" | "l3-router-16-gradient-grey" | "l3-router-16-ontint" | "l3-router-24-gradient-blue" | "l3-router-24-gradient-grey" | "l3-router-24-ontint" | "language-switcher-24-gradient-blue" | "language-switcher-24-white" | "lb-gw-16-gradient-blue" | "lb-gw-16-gradient-grey" | "lb-gw-16-ontint" | "lb-gw-24-gradient-blue" | "lb-gw-24-gradient-grey" | "lb-gw-24-ontint" | "ldap-24-gradient-blue" | "ldap-24-white" | "ldap-sync-16-white" | "leave-fullscreen-16" | "load-balancer-16-gradient-blue" | "load-balancer-16-gradient-grey" | "load-balancer-24-gradient-blue" | "load-balancer-24-gradient-grey" | "load-balancer-monitor-24-fill-ontint" | "load-balancer-monitor-24-gradient-blue" | "load-balancer-monitor-24-gradient-grey" | "loading-16-bold-ontint" | "loading-16-gradient-blue" | "loading-24-bold-gradient-blue" | "loading-8-bold-gradient-blue" | "loading-8-bold-ontint" | "loading-8-gradient-blue" | "loading-8-gradient-white" | "loading_blue" | "loading_gray" | "lock-16-gradient-gray" | "lock" | "log-collection-16-gradient-blue" | "log-collection-16-gray" | "log-collection-24-gradient-blue" | "log-collection-24-gradient-gray" | "log-collection-24-ontint" | "log-collection-24-white" | "login-options-24-gradient-blue" | "login-options-24-white" | "logo-background" | "logo-fuzzy-background" | "long-arrow-down-16" | "long-arrow-up-16" | "maintenance-mode-enter-16-gradient-blue" | "maintenance-mode-enter-16-gradient-yellow" | "maintenance-mode-enter-24-gradient-blue" | "maintenance-mode-enter-24-gradient-yellow" | "maintenance-mode-exist-16-gradient-blue" | "maintenance-mode-exist-16-gradient-yellow" | "maintenance-mode-exist-24-gradient-blue" | "maintenance-mode-exist-24-gradient-yellow" | "maintenance-mode-give-up-16-gradient-blue" | "maintenance-mode-give-up-16-gradient-yellow" | "maintenance-mode-give-up-24-gradient-blue" | "maintenance-mode-give-up-24-gradient-yellow" | "memory-usage-16-green" | "metro-cluster-16-gradient-blue" | "metro-cluster-16-ontint" | "metro-cluster-network-status-24-blue" | "metro-witness-node-24-blue" | "mfa-setting-24-gradient-blue" | "mfa-setting-24-white" | "migrate-16-gradient-blue" | "migrate-16-gradient-gray" | "migrate" | "migration-network-16-blue" | "minus-16-bold-ontint" | "minus-unmount-remove-circle-16-gradient-red" | "monitoring-16-gradient-blue" | "monitoring-24-gradient-blue" | "monitoring-24-gradient-gray" | "monitoring-24-gradient-ontint" | "monitoring-advanced-24-gradient-blue" | "monitoring-advanced-24-ontint" | "monitoring-view-16-gradient-blue" | "more-ellipsis-16-blue" | "more-ellipsis-16-ontint" | "more-ellipsis-16" | "more-ellipsis-24-blue" | "more-ellipsis-24" | "more-ellipsis-3-16-bold-blue" | "more-ellipsis-3-16-bold-ontint" | "more-ellipsis-3-16-bold-primary" | "more-ellipsis-3-16-bold-secondary" | "more-ellipsis-3-24-bold-blue" | "more-ellipsis-3-24-bold-ontint" | "more-ellipsis-3-24-bold-primary" | "more-ellipsis-3-24-bold-secondary" | "more-menu-16-blue" | "more-menu-16-bold-blue" | "more-menu-16-gray" | "mount-cdrom-16" | "mount-cdrom-disc-16-gradient-gray" | "mount-cdrom-disc-16-secondary" | "mount-cdrom-disc-24-gradient-blue" | "mount-cdrom-disc-24-gradient-gray" | "mount-virtual-volume-16-gradient-gray" | "mount-virtual-volume-16-secondary" | "mount-virtual-volume-24-gradient-blue" | "mount-virtual-volume-24-gradient-gray" | "mount-vm-volume-16" | "mounted" | "move-16-gradient-blue" | "nat-gw-16-gradient-blue" | "nat-gw-16-gradient-grey" | "nat-gw-16-gradient-ontint" | "nat-gw-24-gradient-blue" | "nat-gw-24-gradient-grey" | "nat-gw-24-ontint" | "network-16-gradient-blue" | "network-24-blue" | "network-24" | "network-access-16-blue" | "network-access-16-gradient-blue" | "network-access-16-red" | "network-access-16-yellow" | "network-access-24-gradient-blue" | "network-access-24-gradient-gray" | "network-access-24-gradient-green" | "network-management-16-gradient-blue" | "network-management-16-red" | "network-management-16-yellow" | "network-management-24-gradient-blue" | "network-management-24-gradient-gray" | "network-management-24-gradient-yellow" | "network-migration-16-gradient-blue" | "network-migration-16-red" | "network-migration-16-yellow" | "network-security-policy-16-gradient-blue" | "network-security-policy-16-gray" | "network-security-policy-24-blue" | "network-security-policy-24-gradient-blue" | "network-security-policy-24-gray" | "network-security-policy-24-ontint" | "network-storage-16-gradient-blue" | "network-storage-16-red" | "network-storage-16-yellow" | "network-storage-24-gradient-blue" | "network-storage-24-gradient-gray" | "network-storage-24-gradient-purple" | "network-storage-access-16-gradient-blue" | "network-storage-access-16-red" | "network-storage-access-16-yellow" | "network-storage-access-24-gradient-blue" | "network-topo-16-gradient-blue" | "network-topo-16-gradient-gray" | "network-topo-24-gradient-blue" | "network-vm-16-blue" | "network-vm-16-gradient-blue" | "network-vm-16-gradient-red" | "network-vm-16-gradient-yellow" | "nfs-datastore-storage-object-24-gradient-blue" | "nfs-datastore-storage-object-24-gradient-gray" | "nfs-export-16-gradient-blue" | "nfs-export-24-blue" | "nfs-export-24" | "nfs-file-16-gradient-blue" | "nfs-file-24-gradient-blue" | "nfs-file-24-gradient-gray" | "nfs-folder-24-gradient-blue" | "nfs-folder-24-gradient-gray" | "nfs-inode-24-blue" | "nfs-inode-24" | "nic-16-gradient-blue" | "nic-24-blue" | "nic-24-gradient-blue" | "nic-24-gradient-grey" | "nic-24" | "nic-error" | "nic-network-pci-passthrough-16-gradient-blue" | "nic-network-pci-passthrough-16-red" | "nic-network-pci-passthrough-16-yellow" | "nic" | "no-alert-80-gradient-gray" | "no-alert-disconnected-80-gradient-gray" | "no-cache-80-gradient-gray" | "no-critical-alert-80-gradient-gray" | "no-data-recovery-80-gradient-gray" | "no-info-alert-80-gradient-gray" | "no-notice-alert-80-gradient-gray" | "no-storage-80-gradient-gray" | "no-storage-cluster-80-gradient-gray" | "no-vm-80-gradient-gray" | "normal_status" | "not-folder-16-blue" | "not-folder-16" | "notice-attention-16-yellow" | "notice-info-16-blue" | "notice-severe-warning-16-red" | "notice-triangle-fill-16-bold-ontint" | "notice-triangle-fill-16-bold-yellow" | "notice-triangle-fill-16-ontint" | "notice-triangle-fill-16-yellow" | "nvme-namespace-group-24-blue" | "nvme-namespace-group-24-gray" | "nvme-namespace-storage-object-16-gradient-blue" | "nvme-namespace-storage-object-24-blue" | "nvme-namespace-storage-object-24-gray" | "nvme-subsystem-datastore-storage-object-16-gradient-blue" | "nvme-subsystem-datastore-storage-object-24-blue" | "nvme-subsystem-datastore-storage-object-24-gray" | "open-terminal-16-gradient-blue" | "open-terminal-16-gradient-gray" | "open-terminal-16-white" | "open-terminal-16" | "openterminal" | "operations" | "organization-16-blue" | "organization-16-bold-gradient-blue" | "organization-16-bold-gradient-gray" | "organization-16-bold-secondary" | "organization-16-gradient-blue" | "organization-16-gradient-gray" | "organization-16" | "organization-24-gradient-blue" | "organization-24-gradient-gray" | "organization-24-ontint" | "orgnization_activated" | "orgnization_normal" | "os-16-linux-archlinux" | "os-16-linux-centos" | "os-16-linux-debian" | "os-16-linux-fedora" | "os-16-linux-opensuse" | "os-16-linux-oracle-linux" | "os-16-linux-oracle-solaris" | "os-16-linux-redflag" | "os-16-linux-redhat" | "os-16-linux-ubuntu" | "os-16-macos-finder" | "os-16-windows-10" | "os-16-windows-7" | "os-16-windows-8-1" | "os-16-windows-8" | "os-16-windows-98" | "os-16-windows-server-2003" | "os-16-windows-server-2008" | "os-16-windows-server-2012" | "os-16-windows-server-2016" | "os-16-windows-server-2019" | "os-16-windows-vista" | "os-16-windows-xp" | "os-logo-archlinux" | "os-logo-centos" | "os-logo-debian" | "os-logo-deepin" | "os-logo-fedora" | "os-logo-kylin" | "os-logo-macOS" | "os-logo-neoKylin" | "os-logo-openeuler" | "os-logo-opensuse" | "os-logo-oraclelinux" | "os-logo-oraclesolaris" | "os-logo-question" | "os-logo-redflag" | "os-logo-redhat" | "os-logo-rocky" | "os-logo-ubuntu" | "os-logo-uniontech" | "os-logo-unknown" | "os-logo-windows-server-2022" | "os-logo-windows-server" | "os-logo-windows10" | "os-logo-windows11" | "os-logo-windows2000" | "os-logo-windows7" | "os-logo-windows8" | "os-logo-windowsXP" | "os-other-unknown-16-gradient-gray" | "out-max-16" | "password_security" | "password_security_white" | "pause-16-gradient-blue" | "pause-24" | "pci-device-16-gradient-blue" | "pci-device-24-gradient-blue" | "pci-device-24-gradient-gray" | "pci-nic-24-gradient-blue" | "pci-nic-24-gradient-grey" | "permanent-failover-24-blue" | "permanent-transfer-arrow-40-blue" | "physical-disk-16-gradient-blue" | "physical-disk-24-blue" | "physical-disk-24-gradient-blue" | "physical-disk-24-gradient-gray" | "physical-disk-24" | "physical-switch-machine-16-gradient-blue" | "physical-switch-machine-16-gradient-grey" | "physical-switch-machine-24-gradient-blue" | "placeholder-16" | "plus-add-circle-16-blue" | "plus-add-circle-16-secondary" | "plus-add-circle-24-blue" | "plus-add-circle-24-primary" | "plus-add-circle-24-secondary" | "plus-add-circle-disabled-24-gray-secondary" | "plus-add-create-new-16-blue" | "plus-add-create-new-16-bold-blue" | "plus-add-create-new-16-bold-ontint" | "plus-add-create-new-16-bold-secondary" | "plus-add-create-new-16-gray" | "plus-add-create-new-16-light" | "plus-add-create-new-16-ontint" | "plus-add-create-new-16-secondary" | "plus-add-create-new-16-super" | "plus-add-create-new-24-gradient-blue" | "plus-add-create-new-24-gradient-gray" | "plus-add-create-new-circle-fill-16-bold-blue" | "plus-add-create-new-circle-fill-16-bold-ontint" | "plus-add-create-new-circle-fill-24-bold-blue" | "plus-add-create-new-circle-gradient-16-blue" | "plus-add-create-new-small-16-blue" | "plus-add-create-new-small-16-bold-blue" | "plus-add-create-new-small-16-bold-ontint" | "plus-add-create-new-small-16-bold-secondary" | "plus-add-create-new-small-16-ontint" | "plus-add-create-new-small-16-secondary" | "pmem-24-gradient-blue" | "port-network-16-gradient-blue" | "port-network-16-green" | "port-network-16-red" | "port-network-16-yellow" | "port-network-24-blue" | "port-network-24-gradient-blue" | "port-network-24-gradient-gray" | "port-network-24" | "port-quarantine-16-green" | "port-quarantine-16-red" | "port-quarantine-16-yellow" | "port-quarantine-green" | "port-quarantine-red" | "port-quarantine-yellow" | "power-lightning-24-gradient-green" | "power-lightning-24-tertiary" | "power-on-24" | "poweroff-shutdown-stop-16-gradient-blue" | "poweroff-shutdown-stop-16-gradient-gray" | "poweroff-shutdown-stop-16-red" | "poweroff-turn-on-shut-down-16-gradient-red" | "poweron-start-16-gradient-blue" | "poweron-start-16-gradient-gray" | "poweron-start-24-gradient-blue" | "poweron-start-24-gradient-gray" | "poweron-start-new-16-gradient-blue" | "primary-available-zone-16-gradient-grey-outlined" | "primary-available-zone-24-blue" | "primary-to-secondary-16-gradient-blue" | "primary-zone-16-gradient-blue" | "primary-zone-16-ontint" | "progress" | "pswitch-port-16-gradient-blue" | "qos-16-gradient-gray" | "rack-16-gradient-blue" | "rack-24-gradient-blue" | "real-server-pool-16-gradient-blue" | "real-server-pool-24-fill-gradient-blue" | "real-server-pool-24-fill-gradient-grey" | "real-server-pool-24-ontint" | "recieve-16-fill-gradient-others" | "recieve-24-fill-gradient-others" | "recover-continue-16-gradient-blue" | "recover-continue-16-gradient-gray" | "recover-continue-24-gradient-blue" | "recover-recycle-vm-16-gradient-blue" | "recover-recycle-vm-16-gradient-gray" | "recyclebin_clusterSettings_delete_24_red" | "recyclebin_clusterSettings_edit_24_blue" | "refresh-sync-on-tint" | "refresh-sync-tertiary" | "refresh" | "replica-vm-16-gradient-blue" | "replica-vm-24-blue" | "replica-vm-24-ontint" | "replica-vm-failback-state-16" | "replica-vm-failover-state-16" | "replica-vm-failover-test-16" | "replica-vm-not-ready-16" | "replica-vm-permanent-failover-state-16" | "replica-vm-ready-16" | "replica-vm-replicating-16" | "replica-vm-unknow-16" | "replication-plan-16-gray" | "replication-plan-24-blue" | "replication-plan-24-gray" | "replication-plan-24-ontint" | "replication-plan-origin-vm-null-24" | "replication-plan-origin-vm-running-24" | "replication-plan-origin-vm-stopped-24" | "replication-plan-origin-vm-suspended-24" | "replication-plan-origin-vm-unknown-24" | "replication-plan-replica-vm-null-16-blue" | "replication-plan-replica-vm-null-24-blue" | "replication-plan-replica-vm-null-24" | "replication-plan-replica-vm-running-24" | "replication-plan-replica-vm-stopped-24" | "replication-plan-replica-vm-suspended-24" | "replication-plan-replica-vm-unknown-24" | "replication-service-24-blue" | "replication-service-24-ontint" | "report-form-24-blue" | "report-form-24-gradient-blue" | "report-form-24-gradient-gray" | "report-form-24-gradient-white" | "report-form-24" | "report-form-template-file-24-gradient-blue" | "report-form-template-file-24-gradient-gray" | "report-form-template-file-24-gradient-white" | "reslice-16-gradient-blue" | "reslice-16-ontint" | "reslice-sriov-16-blue" | "resource-optimization-24-blue" | "resource-optimization-24-gradient-blue" | "resource-optimization-24-gradient-gray" | "resource-optimization-24-gradient-ontint" | "resource-optimization-24" | "resource_custom_composite_filter_blue" | "resource_custom_composite_filter_white" | "resource_custom_dead_vm_blue" | "resource_custom_dead_vm_white" | "resource_custom_memory_vm_blue" | "resource_custom_memory_vm_white" | "resource_custom_vcpu_vm_blue" | "resource_custom_vcpu_vm_white" | "resource_custom_zombie_vm_blue" | "resource_custom_zombie_vm_white" | "resource_dead_vm_blue" | "resource_dead_vm_white" | "resource_memory_vm_blue" | "resource_memory_vm_white" | "resource_vcpu_vm_blue" | "resource_vcpu_vm_white" | "resource_zombie_vm_blue" | "resource_zombie_vm_white" | "restart-16-gradient-blue" | "restart-16-gradient-gray" | "restart-16" | "restart-24" | "restart-new-16-gradient-blue" | "restart-new-16-gradient-gray" | "restart" | "resume-24" | "resume" | "retain-snapshot-group-16-blue" | "retry-16-blue" | "retry-16-gradient-blue" | "retry-16-gradient-gray" | "retry-16-ontint" | "retry-16-secondary" | "right-circle-arrow" | "router-table-16-gradient-blue" | "router-table-16-gradient-grey" | "router-table-16-ontint" | "router-table-24-gradient-blue" | "router-table-24-gradient-grey" | "router-table-24-ontint" | "rule-optimization-io-square-24-gradient-blue" | "rule-optimization-io-square-24-gradient-gray" | "rule-optimization-power-state-square-24-gradient-blue" | "rule-optimization-power-state-square-24-gradient-gray" | "rule-optimization-ram-24-gradient-blue" | "rule-optimization-ram-24-gradient-gray" | "rule-optimization-ram-square-24-gradient-blue" | "rule-optimization-ram-square-24-gradient-gray" | "rule-optimization-square-24-gradient-blue" | "rule-optimization-square-24-gradient-gray" | "rule-optimization-square-stack-2-24-gradient-blue" | "rule-optimization-square-stack-2-24-gradient-gray" | "rule-optimization-square-stack-2-24-ontint" | "rule-optimization-vcpu-24-gradient-blue" | "rule-optimization-vcpu-24-gradient-gray" | "rule-optimization-vcpu-square-24-gradient-blue" | "rule-optimization-vcpu-square-24-gradient-gray" | "rule-optimization-zombie-24-gradient-blue" | "rule-optimization-zombie-24-gradient-gray" | "search-16-blue" | "search-16-gradient-blue" | "search-16-gradient-gray" | "search-16-ontint" | "search-16-secondary" | "search-16-tertiary" | "search-24-blue" | "search-24-gradient-blue" | "search-24-gradient-gray" | "search-24" | "search-fill-24-gradient-gray" | "secondary-available-zone-16-gradient-grey-outlined" | "secondary-available-zone-24-blue" | "secondary-to-primary-16-gradient-blue" | "secondary-zone-16-gradient-blue" | "secondary-zone-16-ontint" | "security-group-16-gradient-blue" | "security-group-16-gradient-gray" | "security-group-24-gradient-blue" | "security-group-24-gradient-gray" | "security-group-24-gradient-white" | "security-group-24-ontint" | "security-service-16-gradient-blue" | "security-service-16-gradient-grey" | "security-service-16-ontint" | "security-service-24-gradient-blue" | "security-service-24-gradient-grey" | "security-service-24-ontint" | "selected-objects-square-grid-3x3-24-gradient-blue" | "selected-objects-square-grid-3x3-24-gradient-gray" | "send-16-fill-gradient-others" | "send-24-fill-gradient-others" | "session_expiration_blue" | "session_expiration_white" | "settings-gear-16-gradient-blue" | "settings-gear-16-gradient-gray" | "settings-gear-16-secondary" | "settings-gear-24-gradient-blue" | "settings-gear-24-gradient-gray" | "settings-gear-24-white" | "settings-gear-fill-16-gradient-blue" | "settings-gear-fill-16-gradient-gray" | "settings-gear-fill-24-gradient-blue" | "settings-gear-fill-24-gradient-gray" | "settings-gear-user-personal-24-gradient-blue" | "settings-gear-user-personal-24-gradient-gray" | "shared-virtual-volume-24-gradient-blue" | "shared-virtual-volume-24-gradient-gray" | "shared-volume-24-blue" | "shared-volume-24" | "showdiff-16-gradient-blue" | "showdiff-16-gradient-gray" | "showdiff-16" | "shutdown-16" | "shutdown-24" | "sks-business-nic-24" | "sks-control-plane-24" | "sks-dhcp-config-24" | "sks-download-kubeconfig-24-blue" | "sks-download-kubeconfig-24-gray" | "sks-download-kubeconfig" | "sks-ecp-nic-24" | "sks-ip-pool-24-blue" | "sks-ip-pool-24-white" | "sks-ip-range-24" | "sks-management-cluster-16-gray" | "sks-management-cluster-24-blue" | "sks-management-cluster-24-white" | "sks-monitoring-24-blue" | "sks-monitoring-24-white" | "sks-node-24" | "sks-node-group-24" | "sks-node-group" | "sks-node-template-24-blue" | "sks-node-template-24-white" | "sks-node" | "sks-persistent-volume-24" | "sks-persistent-volume" | "sks-replace-node" | "sks-rollback-cluster" | "sks-service-upgrade-24-blue" | "sks-service-upgrade-24-white" | "sks-storage-class-24" | "sks-storage-class" | "sks-upgrade-cluster-24" | "sks-upgrade-cluster" | "sks-worker-24" | "sks-workload-cluster-16-gray" | "sks-workload-cluster-blue-24" | "sks-workload-cluster-white-24" | "sks-zbs-csi-24-blue" | "sks-zbs-csi-24-white" | "sks-zbs-nic-24" | "smartx-logo" | "smtp-mail-24-gradient-blue" | "smtp-mail-24-gradient-gray" | "smtp-mail-24-ontint" | "snapshot-16-gradient-blue" | "snapshot-24-gradient-blue" | "snapshot-24-gradient-gray" | "snapshot-rollback-general-16-blue" | "snapshot-rollback-general-24-blue" | "snapshot-vm-rollback-16-blue" | "snmp-24-gradient-blue" | "snmp-24-gradient-gray" | "snmp-trap-24-blue" | "software-license-24-gradient-blue" | "software-license-24-gradient-gray" | "software-license-24-ontint" | "software-license-24" | "sriov-nic-24-gradient-blue" | "sriov-nic-24-gradient-grey" | "ssd-disk-24-gradient-blue" | "star-16-fill-gray" | "star-16-gray" | "start" | "status-running-triangle-16-gradient-green" | "status-stopped-poweredoff-shutdown-square-16-gray" | "status-suspended-paused-16-gradient-yellow" | "status-unavailable-16" | "status-unknown-questionmark-16-red" | "stop-flash-light-16-gradient-blue" | "stop" | "suspend" | "suspended-pause-16-gradient-blue" | "suspended-pause-16-gradient-gray" | "suspended-pause-16-gradient-orange" | "suspended-pause-24-gradient-orange" | "syslog-24-gradient-blue" | "syslog-24-ontint" | "system-event-auditing-24-blue" | "system-event-auditing-24-ontint" | "system-service-vm-16-yellow" | "system-service-vm-16" | "tag-16-gradient-blue" | "tag-16-gradient-gray" | "tag-24-gradient-blue" | "task-center-24-blue" | "task-center-24-gradient-blue" | "task-center-24-gradient-gray" | "task-center-24" | "task-center-fill-24-blue" | "task-center-fill-24-gradient-blue" | "task-center-fill-24-gradient-gray" | "task-center-fill-24-gradient-green" | "task-center-fill-24-gradient-red" | "task-center-fill-24-gradient-yellow" | "task-center-fill-24" | "task-preview" | "task" | "topn-24-gradient-blue" | "topn-24-gradient-gray" | "trash-bin-delete-16-red" | "trash-bin-delete-16" | "trash-bin-delete-24-red" | "trash-bin-delete-24" | "trash-bin-opened-delete-16-red" | "trash-bin-opened-delete-24-red" | "trash-bin-opened-delete-24" | "trash-bin-slash-24-red" | "trash-move-to-recycle-24-gradient-blue" | "trash-move-to-recycle-24-gradient-red" | "triangle-exclamation" | "unfold-16-regular-secondary" | "unfold-col-cards-16-regular-blue" | "unfold-col-cards-16-regular-secondary" | "unmounted" | "unopened_status" | "upload-21-17-gradient-blue" | "upload-24-gradient-blue" | "upload-24-gradient-gray" | "upload-24-ontint" | "upload-48-gradient-blue" | "upload-outline-24-ontint" | "uploading-16-gradient-blue" | "uploading-16-gradient-gray" | "uploading-16-ontint-blue" | "uploading-16-ontint" | "uploading-24-gradient-blue" | "uploading-24-gradient-gray" | "uploading-fill-24-blue" | "uploading-fill-24-gradient-blue" | "uploading-fill-24-gradient-gray" | "uploading-fill-24" | "usb-16-gradient-blue" | "usb-24-gradient-blue" | "usb-24-gradient-gray" | "usb-mount-16-blue" | "usb-unmount-16-red" | "user-account-24-blue" | "user-account-24-gradient-blue" | "user-account-24-gradient-gray" | "user-account-24-ontint" | "user-account-24" | "user-action-24-blue" | "user-action-24-ontint" | "user-event-auditing-24-blue" | "user-event-auditing-24-ontint" | "user-logout-24-blue" | "user-role-24-blue" | "user-role-24-white" | "user" | "user_account" | "user_account_security" | "user_account_security_white" | "user_account_white" | "vds-16-gradient-blue" | "vds-24-blue" | "vds-24" | "view-eye-16-gray" | "view-eye-24-gradient-blue" | "view-eye-24-gradient-gray" | "virtual-distributed-switch-machine-16-gradient-blue" | "virtual-distributed-switch-machine-16-red" | "virtual-distributed-switch-machine-16-yellow" | "virtual-distributed-switch-machine-24-gradient-blue" | "virtual-distributed-switch-machine-24-gradient-gray" | "virtual-distributed-switch-machine-24-red" | "virtual-distributed-switch-machine-24-yellow" | "virtual-network-16-gradient-blue" | "virtual-nic-network-16-gradient-blue-enabled-on" | "virtual-nic-network-16-gradient-grey-enabled-off" | "virtual-nic-network-16-red-enabled-on" | "virtual-nic-network-16-yellow-enabled-on" | "virtual-nic-network-24-gradient-blue" | "virtual-nic-network-24-gradient-gray" | "virtual-nic-network-vf-sriov-16-gradient-blue" | "virtual-nic-network-vf-sriov-16-red" | "virtual-nic-network-vf-sriov-16-yellow" | "virtual-server-24-fill-gradient-blue" | "virtual-server-24-fill-gradient-grey" | "virtual-server-24-fill-ontint" | "virtual-volume-16-gradient-blue" | "virtual-volume-16-gray" | "virtual-volume-24-gradient-blue" | "virtual-volume-24-gradient-gray" | "virtual-volume-add-plus-16-gradient-gray" | "virtual-volume-add-plus-16-secondary" | "virtual-volume-add-plus-24-gradient-blue" | "virtual-volume-add-plus-24-gradient-gray" | "virtual-volume-snapshot-24-gradient-blue" | "virtual-volume-snapshot-24-gradient-gray" | "vm-16-gradient-blue" | "vm-16-yellow" | "vm-16" | "vm-24-blue" | "vm-24-gradient-blue" | "vm-24-gradient-gray" | "vm-24-primary" | "vm-24" | "vm-clone-16" | "vm-connection-allowed-24" | "vm-connection-connect-24" | "vm-connection-disconnect-24" | "vm-connection-not-allowed-24" | "vm-folder-16-blue" | "vm-folder-16" | "vm-folder-24-blue" | "vm-icon-16-yellow" | "vm-icon-24-blue" | "vm-migrate-16" | "vm-placement-group-16-gradient-blue" | "vm-placement-group-24-gradient-blue" | "vm-placement-group-host-14-6-gradient-blue" | "vm-placement-group-host-14-6-gradient-gray" | "vm-quarantine-16-gradient-blue" | "vm-quarantine-16-gradient-gray" | "vm-quarantine-24-gradient-blue" | "vm-quarantine-24-white" | "vm-recycle-bin-move-to-bin-16-red" | "vm-recycle-bin-move-to-bin-24-red" | "vm-recycle-bin-permanent-delete-24-red" | "vm-restart-16" | "vm-resume-16" | "vm-shutdown-16" | "vm-snapshot-16-gradient-blue" | "vm-snapshot-24-gradient-blue" | "vm-snapshot-24-gradient-gray" | "vm-start-16" | "vm-status-running-16" | "vm-status-stopped-16" | "vm-status-suspended-16" | "vm-status-unknow-16" | "vm-suspended-16" | "vm-template-16-gradient-blue" | "vm-template-24-blue" | "vm-template-24" | "vm-tools-16" | "vm-volume-16-gradient-blue" | "vm-volume-24-blue" | "vm-volume-24" | "vm-volume-add-plus-16" | "vm" | "vmgroup-folder-16-gradient-blue" | "vmgroup-folder-16-gradient-gray" | "vmgroup-folder-24-gradient-blue" | "vmgroup-folder-24-gradient-gray" | "vmgroup-folder-fill-16-ontint" | "vmgroup-folder-gradient-blue-24" | "vmgroup-folder-not-grouped-16-gradient-blue" | "vmgroup-folder-not-grouped-16-gradient-gray" | "vmgroup-folder-not-grouped-24-gradient-blue" | "vmgroup-folder-not-grouped-24-gradient-gray" | "vmgroup-folder-not-grouped-fill-16-ontint" | "vmnetwork-16-gradient-blue" | "vmnetwork-16-gradient-gray" | "vmnetwork-24-gradient-blue" | "vmnetwork-24-gradient-gray" | "vmtemplat-convert-16-gradient-blue" | "vmtemplat-convert-16-gradient-gray" | "vmtemplate-16-gradient-yellow" | "vmtemplate-24-gradient-blue" | "vmtemplate-24-gradient-gray" | "vmtemplate-24-gradient-ontint" | "vmtemplate-clone-16-gradient-blue" | "vmtemplate-clone-16-gradient-gray" | "vmtemplate-convert-vm-16-gradient-blue" | "vmtemplate-create-16-gradient-blue" | "vmtemplate-create-16-gradient-gray" | "vmtools-16-gradient-blue-1" | "vmtools-16-gradient-blue" | "vmtools-16-gradient-gray" | "vmtools-24-gradient-blue" | "vmtools-24-gradient-green" | "vmtools-24-ontint" | "vpc-16-gradient-blue" | "vpc-16-gradient-grey" | "vpc-16-ontint" | "vpc-24-gradient-blue" | "vpc-24-gradient-grey" | "vpc-24-ontint" | "vpc-peering-16-gradient-blue" | "vpc-peering-16-gradient-grey" | "vpc-peering-16-ontint" | "vpc-peering-24-gradient-blue" | "vpc-peering-24-gradient-grey" | "vpc-peering-24-ontint" | "vpc-subnet-16-gradient-blue" | "vpc-subnet-16-gradient-grey" | "vpc-subnet-16-ontint" | "vpc-subnet-24-gradient-blue" | "vpc-subnet-24-gradient-grey" | "vpc-subnet-24-ontint" | "waiting-breathing-led-16-blue" | "waiting-breathing-led-16-yellow" | "witness-node-normal-critical-red" | "witness-node-normal-healthy-green" | "witness-node-normal-info-blue" | "witness-node-normal-notice-yellow" | "witness-node-small-critical-red" | "witness-node-small-healthy-green" | "witness-node-small-info-blue" | "witness-node-small-notice-yellow" | "xlsx" | "xmark-clear-fill-24-secondary" | "xmark-clear-fill-24-tertiary" | "xmark-close-fill-24-primary" | "xmark-failed-16-bold-ontint" | "xmark-failed-16-bold-red" | "xmark-failed-16-ontint" | "xmark-failed-16-red" | "xmark-failed-24-bold-red" | "xmark-failed-serious-warning-fill-16-bold-ontint" | "xmark-failed-serious-warning-fill-16-bold-red" | "xmark-failed-serious-warning-fill-16-ontint" | "xmark-failed-serious-warning-fill-16-red" | "xmark-remove-16-blue" | "xmark-remove-16-bold-ontint" | "xmark-remove-16-primary" | "xmark-remove-16-regular-blue-caps-on" | "xmark-remove-16-regular-red" | "xmark-remove-16-regular-secondary-caps-on" | "xmark-remove-16-secondary" | "xmark-remove-24-blue" | "xmark-remove-24-primary" | "xmark-remove-24-secondary" | "xmark-remove-small-16-blue" | "xmark-remove-small-16-regular-inherit" | "xmark-remove-small-16-regular-ontint" | "xmark-remove-small-16-secondary"
|
package/dist/index.d.ts
CHANGED
@@ -245,6 +245,9 @@ export { default as ClusterNormalIcon } from './ClusterNormalIcon'
|
|
245
245
|
export { default as ConsistencyConsistentGroup16GradientBlueIcon } from './ConsistencyConsistentGroup16GradientBlueIcon'
|
246
246
|
export { default as ConsistencyGroup24GradientBlueIcon } from './ConsistencyGroup24GradientBlueIcon'
|
247
247
|
export { default as ConsistencyGroup24GradientGrayIcon } from './ConsistencyGroup24GradientGrayIcon'
|
248
|
+
export { default as ContainerRegistry24BlueIcon } from './ContainerRegistry24BlueIcon'
|
249
|
+
export { default as ContainerRegistry24OntintIcon } from './ContainerRegistry24OntintIcon'
|
250
|
+
export { default as ContainerRegistry32ColorfulIcon } from './ContainerRegistry32ColorfulIcon'
|
248
251
|
export { default as CopyToEllipsis324GradientBlueIcon } from './CopyToEllipsis324GradientBlueIcon'
|
249
252
|
export { default as CopyToEllipsis324GradientGrayIcon } from './CopyToEllipsis324GradientGrayIcon'
|
250
253
|
export { default as CpuTemperatureCriticalIcon } from './CpuTemperatureCriticalIcon'
|
@@ -429,6 +432,8 @@ export { default as GatewayService24GradientBlueIcon } from './GatewayService24G
|
|
429
432
|
export { default as GatewayService24GradientGreyIcon } from './GatewayService24GradientGreyIcon'
|
430
433
|
export { default as GatewayService24OntintIcon } from './GatewayService24OntintIcon'
|
431
434
|
export { default as GenerateSnapshotImmediately16BlueIcon } from './GenerateSnapshotImmediately16BlueIcon'
|
435
|
+
export { default as GlobalConfiguration24GradientBlueIcon } from './GlobalConfiguration24GradientBlueIcon'
|
436
|
+
export { default as GlobalConfiguration24OntintIcon } from './GlobalConfiguration24OntintIcon'
|
432
437
|
export { default as GlobalPolicy24GradientBlueIcon } from './GlobalPolicy24GradientBlueIcon'
|
433
438
|
export { default as GpuDevice16GradientBlueIcon } from './GpuDevice16GradientBlueIcon'
|
434
439
|
export { default as GpuDevice16GradientGreyIcon } from './GpuDevice16GradientGreyIcon'
|
package/dist/index.js
CHANGED
@@ -245,6 +245,9 @@ module.exports.ClusterNormalIcon = require("./ClusterNormalIcon.js")
|
|
245
245
|
module.exports.ConsistencyConsistentGroup16GradientBlueIcon = require("./ConsistencyConsistentGroup16GradientBlueIcon.js")
|
246
246
|
module.exports.ConsistencyGroup24GradientBlueIcon = require("./ConsistencyGroup24GradientBlueIcon.js")
|
247
247
|
module.exports.ConsistencyGroup24GradientGrayIcon = require("./ConsistencyGroup24GradientGrayIcon.js")
|
248
|
+
module.exports.ContainerRegistry24BlueIcon = require("./ContainerRegistry24BlueIcon.js")
|
249
|
+
module.exports.ContainerRegistry24OntintIcon = require("./ContainerRegistry24OntintIcon.js")
|
250
|
+
module.exports.ContainerRegistry32ColorfulIcon = require("./ContainerRegistry32ColorfulIcon.js")
|
248
251
|
module.exports.CopyToEllipsis324GradientBlueIcon = require("./CopyToEllipsis324GradientBlueIcon.js")
|
249
252
|
module.exports.CopyToEllipsis324GradientGrayIcon = require("./CopyToEllipsis324GradientGrayIcon.js")
|
250
253
|
module.exports.CpuTemperatureCriticalIcon = require("./CpuTemperatureCriticalIcon.js")
|
@@ -429,6 +432,8 @@ module.exports.GatewayService24GradientBlueIcon = require("./GatewayService24Gra
|
|
429
432
|
module.exports.GatewayService24GradientGreyIcon = require("./GatewayService24GradientGreyIcon.js")
|
430
433
|
module.exports.GatewayService24OntintIcon = require("./GatewayService24OntintIcon.js")
|
431
434
|
module.exports.GenerateSnapshotImmediately16BlueIcon = require("./GenerateSnapshotImmediately16BlueIcon.js")
|
435
|
+
module.exports.GlobalConfiguration24GradientBlueIcon = require("./GlobalConfiguration24GradientBlueIcon.js")
|
436
|
+
module.exports.GlobalConfiguration24OntintIcon = require("./GlobalConfiguration24OntintIcon.js")
|
432
437
|
module.exports.GlobalPolicy24GradientBlueIcon = require("./GlobalPolicy24GradientBlueIcon.js")
|
433
438
|
module.exports.GpuDevice16GradientBlueIcon = require("./GpuDevice16GradientBlueIcon.js")
|
434
439
|
module.exports.GpuDevice16GradientGreyIcon = require("./GpuDevice16GradientGreyIcon.js")
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@cloudtower/icons-react",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "0.27.
|
4
|
+
"version": "0.27.2",
|
5
5
|
"description": "",
|
6
6
|
"keywords": [],
|
7
7
|
"homepage": "https://github.com/webzard-io/cloudtower-ui-kit#readme",
|
@@ -30,12 +30,12 @@
|
|
30
30
|
"devDependencies": {
|
31
31
|
"@babel/core": "^7.21.0",
|
32
32
|
"@babel/plugin-transform-react-jsx": "^7.21.0",
|
33
|
-
"@cloudtower/icons": "0.27.
|
33
|
+
"@cloudtower/icons": "0.27.2",
|
34
34
|
"@svgr/core": "^5.0.0",
|
35
35
|
"camelcase": "^6.0.0"
|
36
36
|
},
|
37
37
|
"main": "dist/index.js",
|
38
38
|
"module": "dist/esm/index.js",
|
39
39
|
"typings": "dist/index.d.ts",
|
40
|
-
"gitHead": "
|
40
|
+
"gitHead": "a9ddd849dbb19a2a6643cdf31f899898f41674be"
|
41
41
|
}
|