@cloudtower/icons-react 0.28.1 → 0.28.3-TOWER-11037-1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ActiveObservabilityService24OntintIcon.d.ts +4 -0
- package/dist/IpPool24Icon.d.ts +4 -0
- package/dist/IpPoolWhite24Icon.d.ts +4 -0
- package/dist/Loading6GradientBlueIcon.d.ts +4 -0
- package/dist/Loading6OntintIcon.d.ts +4 -0
- package/dist/Loading8OntintIcon.d.ts +4 -0
- package/dist/PhysicalMachineClusterIcon.d.ts +4 -0
- package/dist/VmClusterIcon.d.ts +4 -0
- package/dist/cjs/{ActiveObservabilityService24GrayIcon.js → ActiveObservabilityService24OntintIcon.js} +2 -2
- package/dist/cjs/IpPool24Icon.js +32 -0
- package/dist/cjs/IpPoolWhite24Icon.js +20 -0
- package/dist/cjs/Loading16GradientBlueIcon.js +10 -9
- package/dist/cjs/{LoadingBlue16Icon.js → Loading6GradientBlueIcon.js} +12 -9
- package/dist/cjs/{Loading8BoldOntintIcon.js → Loading6OntintIcon.js} +15 -11
- package/dist/cjs/Loading8GradientBlueIcon.js +3 -3
- package/dist/cjs/{LoadingGray16Icon.js → Loading8OntintIcon.js} +14 -13
- package/dist/cjs/PhysicalMachineClusterIcon.js +66 -0
- package/dist/cjs/VmClusterIcon.js +66 -0
- package/dist/cjs/index.js +8 -10
- package/dist/esm/{ActiveObservabilityService24GrayIcon.js → ActiveObservabilityService24OntintIcon.js} +2 -2
- package/dist/esm/IpPool24Icon.js +32 -0
- package/dist/esm/IpPoolWhite24Icon.js +20 -0
- package/dist/esm/Loading16GradientBlueIcon.js +10 -9
- package/dist/esm/{LoadingBlue16Icon.js → Loading6GradientBlueIcon.js} +12 -9
- package/dist/esm/{Loading8BoldOntintIcon.js → Loading6OntintIcon.js} +15 -11
- package/dist/esm/Loading8GradientBlueIcon.js +3 -3
- package/dist/esm/{LoadingGray16Icon.js → Loading8OntintIcon.js} +14 -13
- package/dist/esm/PhysicalMachineClusterIcon.js +66 -0
- package/dist/esm/VmClusterIcon.js +66 -0
- package/dist/esm/index.js +8 -10
- package/dist/image-types.d.ts +1 -1
- package/dist/index.d.ts +8 -10
- package/package.json +3 -3
- package/dist/ActiveObservabilityService24GrayIcon.d.ts +0 -4
- package/dist/Loading16BoldOntintIcon.d.ts +0 -4
- package/dist/Loading24BoldGradientBlueIcon.d.ts +0 -4
- package/dist/Loading8BoldGradientBlueIcon.d.ts +0 -4
- package/dist/Loading8BoldOntintIcon.d.ts +0 -4
- package/dist/Loading8GradientWhiteIcon.d.ts +0 -4
- package/dist/LoadingBlue16Icon.d.ts +0 -4
- package/dist/LoadingBlueIcon.d.ts +0 -4
- package/dist/LoadingGray16Icon.d.ts +0 -4
- package/dist/LoadingGrayIcon.d.ts +0 -4
- package/dist/cjs/Loading16BoldOntintIcon.js +0 -35
- package/dist/cjs/Loading24BoldGradientBlueIcon.js +0 -35
- package/dist/cjs/Loading8BoldGradientBlueIcon.js +0 -35
- package/dist/cjs/Loading8GradientWhiteIcon.js +0 -35
- package/dist/cjs/LoadingBlueIcon.js +0 -30
- package/dist/cjs/LoadingGrayIcon.js +0 -30
- package/dist/esm/Loading16BoldOntintIcon.js +0 -35
- package/dist/esm/Loading24BoldGradientBlueIcon.js +0 -35
- package/dist/esm/Loading8BoldGradientBlueIcon.js +0 -35
- package/dist/esm/Loading8GradientWhiteIcon.js +0 -35
- package/dist/esm/LoadingBlueIcon.js +0 -30
- package/dist/esm/LoadingGrayIcon.js +0 -30
@@ -1,31 +1,34 @@
|
|
1
1
|
import * as React from "react";
|
2
|
-
function
|
2
|
+
function Loading6GradientBlueIcon({
|
3
3
|
title,
|
4
4
|
titleId,
|
5
5
|
...props
|
6
6
|
}) {
|
7
7
|
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
-
width:
|
9
|
-
height:
|
8
|
+
width: 6,
|
9
|
+
height: 6,
|
10
10
|
fill: "none",
|
11
11
|
xmlns: "http://www.w3.org/2000/svg",
|
12
12
|
"aria-labelledby": titleId
|
13
13
|
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
14
14
|
id: titleId
|
15
15
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
16
|
-
|
16
|
+
opacity: 0.5,
|
17
|
+
fillRule: "evenodd",
|
18
|
+
clipRule: "evenodd",
|
19
|
+
d: "M3 5a2 2 0 100-4 2 2 0 000 4zm0 1a3 3 0 100-6 3 3 0 000 6z",
|
17
20
|
fill: "#08F",
|
18
21
|
fillOpacity: 0.1
|
19
22
|
}), /*#__PURE__*/React.createElement("path", {
|
20
|
-
d: "
|
21
|
-
fill: "url(#
|
23
|
+
d: "M3 0a3 3 0 00-1.763 5.427l.586-.807A2.003 2.003 0 013 .997V0z",
|
24
|
+
fill: "url(#paint0_radial_Loading6GradientBlueIcon_13765_71910)"
|
22
25
|
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
23
|
-
id: "
|
26
|
+
id: "paint0_radial_Loading6GradientBlueIcon_13765_71910",
|
24
27
|
cx: 0,
|
25
28
|
cy: 0,
|
26
29
|
r: 1,
|
27
30
|
gradientUnits: "userSpaceOnUse",
|
28
|
-
gradientTransform: "matrix(
|
31
|
+
gradientTransform: "matrix(6 -6 6 6 0 6)"
|
29
32
|
}, /*#__PURE__*/React.createElement("stop", {
|
30
33
|
stopColor: "#5BCAFF"
|
31
34
|
}), /*#__PURE__*/React.createElement("stop", {
|
@@ -33,4 +36,4 @@ function LoadingBlue16Icon({
|
|
33
36
|
stopColor: "#06F"
|
34
37
|
}))));
|
35
38
|
}
|
36
|
-
export default
|
39
|
+
export default Loading6GradientBlueIcon;
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import * as React from "react";
|
2
|
-
function
|
2
|
+
function Loading6OntintIcon({
|
3
3
|
title,
|
4
4
|
titleId,
|
5
5
|
...props
|
6
6
|
}) {
|
7
7
|
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
-
width:
|
9
|
-
height:
|
8
|
+
width: 6,
|
9
|
+
height: 6,
|
10
10
|
fill: "none",
|
11
11
|
xmlns: "http://www.w3.org/2000/svg",
|
12
12
|
"aria-labelledby": titleId
|
@@ -15,21 +15,25 @@ function Loading8BoldOntintIcon({
|
|
15
15
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
16
16
|
fillRule: "evenodd",
|
17
17
|
clipRule: "evenodd",
|
18
|
-
d: "
|
19
|
-
fill: "
|
18
|
+
d: "M3 5a2 2 0 100-4 2 2 0 000 4zm0 1a3 3 0 100-6 3 3 0 000 6z",
|
19
|
+
fill: "#fff",
|
20
|
+
fillOpacity: 0.2
|
21
|
+
}), /*#__PURE__*/React.createElement("path", {
|
22
|
+
d: "M3 0a3 3 0 00-1.763 5.427l.586-.807A2.003 2.003 0 013 .997V0z",
|
23
|
+
fill: "url(#paint0_radial_Loading6OntintIcon_13765_71911)"
|
20
24
|
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
21
|
-
id: "
|
25
|
+
id: "paint0_radial_Loading6OntintIcon_13765_71911",
|
22
26
|
cx: 0,
|
23
27
|
cy: 0,
|
24
28
|
r: 1,
|
25
29
|
gradientUnits: "userSpaceOnUse",
|
26
|
-
gradientTransform: "rotate(
|
30
|
+
gradientTransform: "rotate(117.071 2.938 1.956) scale(6.05926 10.331)"
|
27
31
|
}, /*#__PURE__*/React.createElement("stop", {
|
28
|
-
stopColor: "#fff"
|
29
|
-
stopOpacity: 0.1
|
32
|
+
stopColor: "#fff"
|
30
33
|
}), /*#__PURE__*/React.createElement("stop", {
|
31
34
|
offset: 1,
|
32
|
-
stopColor: "#fff"
|
35
|
+
stopColor: "#fff",
|
36
|
+
stopOpacity: 0.6
|
33
37
|
}))));
|
34
38
|
}
|
35
|
-
export default
|
39
|
+
export default Loading6OntintIcon;
|
@@ -17,10 +17,10 @@ function Loading8GradientBlueIcon({
|
|
17
17
|
fill: "#08F",
|
18
18
|
fillOpacity: 0.1
|
19
19
|
}), /*#__PURE__*/React.createElement("path", {
|
20
|
-
d: "M2.05 7.
|
21
|
-
fill: "url(#
|
20
|
+
d: "M2.05 7.377a.098.098 0 01-.136.036A4 4 0 013.483.033a.098.098 0 01.11.088l.079.756a.103.103 0 01-.089.111 3.04 3.04 0 00-1.189 5.593c.047.029.064.09.036.138l-.38.658z",
|
21
|
+
fill: "url(#paint0_radial_Loading8GradientBlueIcon_11622_42029)"
|
22
22
|
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
23
|
-
id: "
|
23
|
+
id: "paint0_radial_Loading8GradientBlueIcon_11622_42029",
|
24
24
|
cx: 0,
|
25
25
|
cy: 0,
|
26
26
|
r: 1,
|
@@ -1,36 +1,37 @@
|
|
1
1
|
import * as React from "react";
|
2
|
-
function
|
2
|
+
function Loading8OntintIcon({
|
3
3
|
title,
|
4
4
|
titleId,
|
5
5
|
...props
|
6
6
|
}) {
|
7
7
|
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
-
width:
|
9
|
-
height:
|
8
|
+
width: 8,
|
9
|
+
height: 8,
|
10
10
|
fill: "none",
|
11
11
|
xmlns: "http://www.w3.org/2000/svg",
|
12
12
|
"aria-labelledby": titleId
|
13
13
|
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
14
14
|
id: titleId
|
15
15
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
16
|
-
d: "
|
17
|
-
fill: "#
|
18
|
-
fillOpacity: 0.
|
16
|
+
d: "M8 4a4 4 0 11-8 0 4 4 0 018 0zM.96 4a3.04 3.04 0 106.08 0A3.04 3.04 0 00.96 4z",
|
17
|
+
fill: "#fff",
|
18
|
+
fillOpacity: 0.2
|
19
19
|
}), /*#__PURE__*/React.createElement("path", {
|
20
|
-
d: "
|
21
|
-
fill: "url(#
|
20
|
+
d: "M2.05 7.377a.098.098 0 01-.136.036A4 4 0 013.483.033a.098.098 0 01.11.088l.079.756a.103.103 0 01-.089.111 3.04 3.04 0 00-1.189 5.593c.047.029.064.09.036.138l-.38.658z",
|
21
|
+
fill: "url(#paint0_radial_Loading8OntintIcon_10090_58812)"
|
22
22
|
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
23
|
-
id: "
|
23
|
+
id: "paint0_radial_Loading8OntintIcon_10090_58812",
|
24
24
|
cx: 0,
|
25
25
|
cy: 0,
|
26
26
|
r: 1,
|
27
27
|
gradientUnits: "userSpaceOnUse",
|
28
|
-
gradientTransform: "
|
28
|
+
gradientTransform: "rotate(104.191 1.727 1.591) scale(6.90296)"
|
29
29
|
}, /*#__PURE__*/React.createElement("stop", {
|
30
|
-
stopColor: "#
|
30
|
+
stopColor: "#fff"
|
31
31
|
}), /*#__PURE__*/React.createElement("stop", {
|
32
32
|
offset: 1,
|
33
|
-
stopColor: "#
|
33
|
+
stopColor: "#fff",
|
34
|
+
stopOpacity: 0.6
|
34
35
|
}))));
|
35
36
|
}
|
36
|
-
export default
|
37
|
+
export default Loading8OntintIcon;
|
@@ -0,0 +1,66 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function PhysicalMachineClusterIcon({
|
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: "M9.7 12.35a.9.9 0 11-1.8 0 .9.9 0 011.8 0z",
|
17
|
+
fill: "url(#paint0_radial_PhysicalMachineClusterIcon_3175_39328)"
|
18
|
+
}), /*#__PURE__*/React.createElement("path", {
|
19
|
+
fillRule: "evenodd",
|
20
|
+
clipRule: "evenodd",
|
21
|
+
d: "M6 11.1a1.5 1.5 0 011.5-1.5h9a1.5 1.5 0 011.5 1.5v2.5a1.5 1.5 0 01-1.5 1.5h-9A1.5 1.5 0 016 13.6v-2.5zm1.5-.5a.5.5 0 00-.5.5v2.5a.5.5 0 00.5.5h9a.5.5 0 00.5-.5v-2.5a.5.5 0 00-.5-.5h-9z",
|
22
|
+
fill: "url(#paint1_radial_PhysicalMachineClusterIcon_3175_39328)"
|
23
|
+
}), /*#__PURE__*/React.createElement("path", {
|
24
|
+
fillRule: "evenodd",
|
25
|
+
clipRule: "evenodd",
|
26
|
+
d: "M10.916 1.467a2.5 2.5 0 012.169 0l6.474 3.118A2.5 2.5 0 0120.91 6.28l1.6 7.005a2.5 2.5 0 01-.483 2.115l-4.48 5.618a2.5 2.5 0 01-1.955.941H8.408a2.5 2.5 0 01-1.955-.941L1.973 15.4a2.5 2.5 0 01-.483-2.115l1.6-7.005a2.5 2.5 0 011.352-1.696l6.474-3.118zm1.735.901a1.5 1.5 0 00-1.301 0L4.876 5.486a1.5 1.5 0 00-.812 1.018l-1.599 7.005a1.5 1.5 0 00.29 1.269l4.48 5.617a1.5 1.5 0 001.173.565h7.185a1.5 1.5 0 001.173-.565l4.48-5.617a1.5 1.5 0 00.29-1.27l-1.6-7.004a1.5 1.5 0 00-.811-1.018L12.65 2.368z",
|
27
|
+
fill: "url(#paint2_radial_PhysicalMachineClusterIcon_3175_39328)"
|
28
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
29
|
+
id: "paint0_radial_PhysicalMachineClusterIcon_3175_39328",
|
30
|
+
cx: 0,
|
31
|
+
cy: 0,
|
32
|
+
r: 1,
|
33
|
+
gradientUnits: "userSpaceOnUse",
|
34
|
+
gradientTransform: "matrix(21.14518 -20.74032 20.73646 21.14125 1.428 21.96)"
|
35
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
36
|
+
stopColor: "#5BCAFF"
|
37
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
38
|
+
offset: 1,
|
39
|
+
stopColor: "#06F"
|
40
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
41
|
+
id: "paint1_radial_PhysicalMachineClusterIcon_3175_39328",
|
42
|
+
cx: 0,
|
43
|
+
cy: 0,
|
44
|
+
r: 1,
|
45
|
+
gradientUnits: "userSpaceOnUse",
|
46
|
+
gradientTransform: "matrix(21.14518 -20.74032 20.73646 21.14125 1.428 21.96)"
|
47
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
48
|
+
stopColor: "#5BCAFF"
|
49
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
50
|
+
offset: 1,
|
51
|
+
stopColor: "#06F"
|
52
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
53
|
+
id: "paint2_radial_PhysicalMachineClusterIcon_3175_39328",
|
54
|
+
cx: 0,
|
55
|
+
cy: 0,
|
56
|
+
r: 1,
|
57
|
+
gradientUnits: "userSpaceOnUse",
|
58
|
+
gradientTransform: "matrix(21.14518 -20.74032 20.73646 21.14125 1.428 21.96)"
|
59
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
60
|
+
stopColor: "#5BCAFF"
|
61
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
62
|
+
offset: 1,
|
63
|
+
stopColor: "#06F"
|
64
|
+
}))));
|
65
|
+
}
|
66
|
+
export default PhysicalMachineClusterIcon;
|
@@ -0,0 +1,66 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function VmClusterIcon({
|
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: "M8.684 10.848a.5.5 0 01.5-.5h2a.5.5 0 110 1h-2a.5.5 0 01-.5-.5z",
|
17
|
+
fill: "url(#paint0_radial_VmClusterIcon_3175_39326)"
|
18
|
+
}), /*#__PURE__*/React.createElement("path", {
|
19
|
+
fillRule: "evenodd",
|
20
|
+
clipRule: "evenodd",
|
21
|
+
d: "M6.5 8.583a1.5 1.5 0 011.5-1.5h8a1.5 1.5 0 011.5 1.5v5.6a1.5 1.5 0 01-1.5 1.5h-3v1.223h1.75a.5.5 0 010 1h-5.5a.5.5 0 110-1H11v-1.223H8a1.5 1.5 0 01-1.5-1.5v-5.6zm1.5-.5a.5.5 0 00-.5.5v5.6a.5.5 0 00.5.5h8a.5.5 0 00.5-.5v-5.6a.5.5 0 00-.5-.5H8z",
|
22
|
+
fill: "url(#paint1_radial_VmClusterIcon_3175_39326)"
|
23
|
+
}), /*#__PURE__*/React.createElement("path", {
|
24
|
+
fillRule: "evenodd",
|
25
|
+
clipRule: "evenodd",
|
26
|
+
d: "M10.916 1.467a2.5 2.5 0 012.169 0l6.474 3.118A2.5 2.5 0 0120.91 6.28l1.6 7.005a2.5 2.5 0 01-.483 2.115l-4.48 5.618a2.5 2.5 0 01-1.955.941H8.408a2.5 2.5 0 01-1.955-.941L1.973 15.4a2.5 2.5 0 01-.483-2.115l1.6-7.005a2.5 2.5 0 011.352-1.696l6.474-3.118zm1.735.901a1.5 1.5 0 00-1.301 0L4.876 5.486a1.5 1.5 0 00-.812 1.018l-1.599 7.005a1.5 1.5 0 00.29 1.269l4.48 5.617a1.5 1.5 0 001.173.565h7.185a1.5 1.5 0 001.173-.565l4.48-5.617a1.5 1.5 0 00.29-1.27l-1.6-7.004a1.5 1.5 0 00-.811-1.018L12.65 2.368z",
|
27
|
+
fill: "url(#paint2_radial_VmClusterIcon_3175_39326)"
|
28
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
29
|
+
id: "paint0_radial_VmClusterIcon_3175_39326",
|
30
|
+
cx: 0,
|
31
|
+
cy: 0,
|
32
|
+
r: 1,
|
33
|
+
gradientUnits: "userSpaceOnUse",
|
34
|
+
gradientTransform: "matrix(21.14518 -20.74032 20.73646 21.14125 1.428 21.96)"
|
35
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
36
|
+
stopColor: "#5BCAFF"
|
37
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
38
|
+
offset: 1,
|
39
|
+
stopColor: "#06F"
|
40
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
41
|
+
id: "paint1_radial_VmClusterIcon_3175_39326",
|
42
|
+
cx: 0,
|
43
|
+
cy: 0,
|
44
|
+
r: 1,
|
45
|
+
gradientUnits: "userSpaceOnUse",
|
46
|
+
gradientTransform: "matrix(21.14518 -20.74032 20.73646 21.14125 1.428 21.96)"
|
47
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
48
|
+
stopColor: "#5BCAFF"
|
49
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
50
|
+
offset: 1,
|
51
|
+
stopColor: "#06F"
|
52
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
53
|
+
id: "paint2_radial_VmClusterIcon_3175_39326",
|
54
|
+
cx: 0,
|
55
|
+
cy: 0,
|
56
|
+
r: 1,
|
57
|
+
gradientUnits: "userSpaceOnUse",
|
58
|
+
gradientTransform: "matrix(21.14518 -20.74032 20.73646 21.14125 1.428 21.96)"
|
59
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
60
|
+
stopColor: "#5BCAFF"
|
61
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
62
|
+
offset: 1,
|
63
|
+
stopColor: "#06F"
|
64
|
+
}))));
|
65
|
+
}
|
66
|
+
export default VmClusterIcon;
|
package/dist/esm/index.js
CHANGED
@@ -26,7 +26,7 @@ export { default as ActiveConnection16GradiendtBlueIcon } from './ActiveConnecti
|
|
26
26
|
export { default as ActiveObservabilityService18BlueIcon } from './ActiveObservabilityService18BlueIcon.js'
|
27
27
|
export { default as ActiveObservabilityService18GrayIcon } from './ActiveObservabilityService18GrayIcon.js'
|
28
28
|
export { default as ActiveObservabilityService24BlueIcon } from './ActiveObservabilityService24BlueIcon.js'
|
29
|
-
export { default as
|
29
|
+
export { default as ActiveObservabilityService24OntintIcon } from './ActiveObservabilityService24OntintIcon.js'
|
30
30
|
export { default as ActiveUninstal14GradiendtRedIcon } from './ActiveUninstal14GradiendtRedIcon.js'
|
31
31
|
export { default as AdjustConfig16GradientBlueIcon } from './AdjustConfig16GradientBlueIcon.js'
|
32
32
|
export { default as AdjustConfig16GradientGrayIcon } from './AdjustConfig16GradientGrayIcon.js'
|
@@ -521,6 +521,8 @@ export { default as InstalltoolsIcon } from './InstalltoolsIcon.js'
|
|
521
521
|
export { default as Ip16GradientBlueOutlineOffIcon } from './Ip16GradientBlueOutlineOffIcon.js'
|
522
522
|
export { default as Ip16GradientBlueOutlineOnIcon } from './Ip16GradientBlueOutlineOnIcon.js'
|
523
523
|
export { default as Ip24Icon } from './Ip24Icon.js'
|
524
|
+
export { default as IpPool24Icon } from './IpPool24Icon.js'
|
525
|
+
export { default as IpPoolWhite24Icon } from './IpPoolWhite24Icon.js'
|
524
526
|
export { default as IscsiDatastoreStorageObject16GradientBlueIcon } from './IscsiDatastoreStorageObject16GradientBlueIcon.js'
|
525
527
|
export { default as IscsiDatastoreStorageObject24GradientBlueIcon } from './IscsiDatastoreStorageObject24GradientBlueIcon.js'
|
526
528
|
export { default as IscsiDatastoreStorageObject24GradientGrayIcon } from './IscsiDatastoreStorageObject24GradientGrayIcon.js'
|
@@ -577,22 +579,16 @@ export { default as LoadBalancer24GradientGreyIcon } from './LoadBalancer24Gradi
|
|
577
579
|
export { default as LoadBalancerMonitor24FillOntintIcon } from './LoadBalancerMonitor24FillOntintIcon.js'
|
578
580
|
export { default as LoadBalancerMonitor24GradientBlueIcon } from './LoadBalancerMonitor24GradientBlueIcon.js'
|
579
581
|
export { default as LoadBalancerMonitor24GradientGreyIcon } from './LoadBalancerMonitor24GradientGreyIcon.js'
|
580
|
-
export { default as Loading16BoldOntintIcon } from './Loading16BoldOntintIcon.js'
|
581
582
|
export { default as Loading16GradientBlueIcon } from './Loading16GradientBlueIcon.js'
|
582
583
|
export { default as Loading16GradientGaryIcon } from './Loading16GradientGaryIcon.js'
|
583
584
|
export { default as Loading16OntintIcon } from './Loading16OntintIcon.js'
|
584
|
-
export { default as Loading24BoldGradientBlueIcon } from './Loading24BoldGradientBlueIcon.js'
|
585
585
|
export { default as Loading24GradientBlueIcon } from './Loading24GradientBlueIcon.js'
|
586
586
|
export { default as Loading24GradientGaryIcon } from './Loading24GradientGaryIcon.js'
|
587
587
|
export { default as Loading24OntintIcon } from './Loading24OntintIcon.js'
|
588
|
-
export { default as
|
589
|
-
export { default as
|
588
|
+
export { default as Loading6GradientBlueIcon } from './Loading6GradientBlueIcon.js'
|
589
|
+
export { default as Loading6OntintIcon } from './Loading6OntintIcon.js'
|
590
590
|
export { default as Loading8GradientBlueIcon } from './Loading8GradientBlueIcon.js'
|
591
|
-
export { default as
|
592
|
-
export { default as LoadingBlueIcon } from './LoadingBlueIcon.js'
|
593
|
-
export { default as LoadingBlue16Icon } from './LoadingBlue16Icon.js'
|
594
|
-
export { default as LoadingGrayIcon } from './LoadingGrayIcon.js'
|
595
|
-
export { default as LoadingGray16Icon } from './LoadingGray16Icon.js'
|
591
|
+
export { default as Loading8OntintIcon } from './Loading8OntintIcon.js'
|
596
592
|
export { default as Lock16GradientGrayIcon } from './Lock16GradientGrayIcon.js'
|
597
593
|
export { default as LockIcon } from './LockIcon.js'
|
598
594
|
export { default as LogCollection16GradientBlueIcon } from './LogCollection16GradientBlueIcon.js'
|
@@ -853,6 +849,7 @@ export { default as PhysicalDisk24BlueIcon } from './PhysicalDisk24BlueIcon.js'
|
|
853
849
|
export { default as PhysicalDisk24GradientBlueIcon } from './PhysicalDisk24GradientBlueIcon.js'
|
854
850
|
export { default as PhysicalDisk24GradientGrayIcon } from './PhysicalDisk24GradientGrayIcon.js'
|
855
851
|
export { default as PhysicalDisk24Icon } from './PhysicalDisk24Icon.js'
|
852
|
+
export { default as PhysicalMachineClusterIcon } from './PhysicalMachineClusterIcon.js'
|
856
853
|
export { default as PhysicalMachineManagementBlue24Icon } from './PhysicalMachineManagementBlue24Icon.js'
|
857
854
|
export { default as PhysicalMachineManagementOntint24Icon } from './PhysicalMachineManagementOntint24Icon.js'
|
858
855
|
export { default as PhysicalSwitchMachine16GradientBlueIcon } from './PhysicalSwitchMachine16GradientBlueIcon.js'
|
@@ -1309,6 +1306,7 @@ export { default as Vm24GradientGrayIcon } from './Vm24GradientGrayIcon.js'
|
|
1309
1306
|
export { default as Vm24PrimaryIcon } from './Vm24PrimaryIcon.js'
|
1310
1307
|
export { default as Vm24Icon } from './Vm24Icon.js'
|
1311
1308
|
export { default as VmClone16Icon } from './VmClone16Icon.js'
|
1309
|
+
export { default as VmClusterIcon } from './VmClusterIcon.js'
|
1312
1310
|
export { default as VmConnectionAllowed24Icon } from './VmConnectionAllowed24Icon.js'
|
1313
1311
|
export { default as VmConnectionConnect24Icon } from './VmConnectionConnect24Icon.js'
|
1314
1312
|
export { default as VmConnectionDisconnect24Icon } from './VmConnectionDisconnect24Icon.js'
|