@cloudtower/icons-react 0.32.0 → 0.32.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/AlertBell24WhiteIcon.d.ts +4 -0
- package/dist/KubernetesService16GrayIcon.d.ts +4 -0
- package/dist/ObservabilityConfig24BlueIcon.d.ts +4 -0
- package/dist/ObservabilityConfig24WhiteIcon.d.ts +4 -0
- package/dist/SksSystemService16BlueIcon.d.ts +4 -0
- package/dist/SksSystemService16GrayIcon.d.ts +4 -0
- package/dist/SksSystemService16WhiteIcon.d.ts +4 -0
- package/dist/WorkloadCluster16BlueIcon.d.ts +4 -0
- package/dist/WorkloadCluster16GrayIcon.d.ts +4 -0
- package/dist/WorkloadCluster16WhiteIcon.d.ts +4 -0
- package/dist/cjs/AlertBell24WhiteIcon.js +23 -0
- package/dist/cjs/KubernetesService16GrayIcon.js +52 -0
- package/dist/cjs/ObservabilityConfig24BlueIcon.js +82 -0
- package/dist/cjs/ObservabilityConfig24WhiteIcon.js +34 -0
- package/dist/cjs/SksSystemService16BlueIcon.js +52 -0
- package/dist/cjs/SksSystemService16GrayIcon.js +52 -0
- package/dist/cjs/SksSystemService16WhiteIcon.js +28 -0
- package/dist/cjs/WorkloadCluster16BlueIcon.js +52 -0
- package/dist/cjs/WorkloadCluster16GrayIcon.js +52 -0
- package/dist/cjs/WorkloadCluster16WhiteIcon.js +28 -0
- package/dist/cjs/index.js +10 -0
- package/dist/esm/AlertBell24WhiteIcon.js +23 -0
- package/dist/esm/KubernetesService16GrayIcon.js +52 -0
- package/dist/esm/ObservabilityConfig24BlueIcon.js +82 -0
- package/dist/esm/ObservabilityConfig24WhiteIcon.js +34 -0
- package/dist/esm/SksSystemService16BlueIcon.js +52 -0
- package/dist/esm/SksSystemService16GrayIcon.js +52 -0
- package/dist/esm/SksSystemService16WhiteIcon.js +28 -0
- package/dist/esm/WorkloadCluster16BlueIcon.js +52 -0
- package/dist/esm/WorkloadCluster16GrayIcon.js +52 -0
- package/dist/esm/WorkloadCluster16WhiteIcon.js +28 -0
- package/dist/esm/index.js +10 -0
- package/dist/image-types.d.ts +1 -1
- package/dist/index.d.ts +10 -0
- package/package.json +3 -3
@@ -0,0 +1,52 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function KubernetesService16GrayIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}) {
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
+
width: 16,
|
9
|
+
height: 16,
|
10
|
+
fill: "none",
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
12
|
+
"data-testid": "KubernetesService16GrayIcon",
|
13
|
+
"aria-labelledby": titleId
|
14
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
15
|
+
id: titleId
|
16
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
17
|
+
fillRule: "evenodd",
|
18
|
+
clipRule: "evenodd",
|
19
|
+
d: "M8.5 3.343a.5.5 0 00-1 0v.93a4.08 4.08 0 00-2.024.839l-.658-.658a.5.5 0 10-.707.707l.658.658a4.08 4.08 0 00-.838 2.024H3a.5.5 0 100 1h.93a4.08 4.08 0 00.839 2.024l-.658.658a.5.5 0 10.707.707l.658-.658a4.08 4.08 0 002.024.839v.93a.5.5 0 101 0v-.93a4.08 4.08 0 002.024-.839l.658.658a.5.5 0 10.707-.707l-.657-.658a4.081 4.081 0 00.838-2.024H13a.5.5 0 000-1h-.93a4.08 4.08 0 00-.839-2.025l.658-.657a.5.5 0 10-.707-.707l-.658.657A4.08 4.08 0 008.5 4.273v-.93zM6.19 5.826c.381-.274.827-.465 1.31-.543v1.123c-.183.047-.357.12-.516.214l-.794-.794zM4.94 7.843c.079-.483.269-.93.543-1.31l.794.794c-.094.159-.167.332-.214.516H4.94zm.543 2.31a3.084 3.084 0 01-.542-1.31h1.122c.047.183.12.357.214.516l-.794.793zm2.017 1.25a3.083 3.083 0 01-1.31-.543l.794-.794c.159.094.332.167.516.214v1.123zm2.31-.543a3.085 3.085 0 01-1.31.543V10.28a1.99 1.99 0 00.516-.214l.794.794zm1.25-2.017a3.084 3.084 0 01-.543 1.31l-.794-.794c.094-.16.167-.333.214-.516h1.123zm-.543-2.31c.275.38.465.827.543 1.31H9.937a1.988 1.988 0 00-.214-.516l.794-.794zM8.5 5.283c.483.078.929.268 1.31.543l-.794.794a1.988 1.988 0 00-.516-.214V5.283zm.5 3.06a1 1 0 11-2 0 1 1 0 012 0z",
|
20
|
+
fill: "url(#paint0_radial_KubernetesService16GrayIcon_1803_55716)"
|
21
|
+
}), /*#__PURE__*/React.createElement("path", {
|
22
|
+
fillRule: "evenodd",
|
23
|
+
clipRule: "evenodd",
|
24
|
+
d: "M8.65.575a1.5 1.5 0 00-1.301 0L2.353 2.98a1.5 1.5 0 00-.812 1.017L.307 9.405a1.5 1.5 0 00.29 1.269l3.457 4.335a1.5 1.5 0 001.173.565h5.545a1.5 1.5 0 001.173-.565l3.457-4.335a1.5 1.5 0 00.29-1.27l-1.234-5.406a1.5 1.5 0 00-.812-1.017L8.65.575zm-.868.9a.5.5 0 01.434 0l4.996 2.407a.5.5 0 01.27.339l1.235 5.406a.5.5 0 01-.097.423l-3.457 4.335a.5.5 0 01-.391.189H5.227a.5.5 0 01-.391-.189L1.379 10.05a.5.5 0 01-.097-.423l1.234-5.406a.5.5 0 01.27-.34l4.996-2.405z",
|
25
|
+
fill: "url(#paint1_radial_KubernetesService16GrayIcon_1803_55716)"
|
26
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
27
|
+
id: "paint0_radial_KubernetesService16GrayIcon_1803_55716",
|
28
|
+
cx: 0,
|
29
|
+
cy: 0,
|
30
|
+
r: 1,
|
31
|
+
gradientUnits: "userSpaceOnUse",
|
32
|
+
gradientTransform: "matrix(15.45974 -15.14734 15.14419 15.45653 .27 15.574)"
|
33
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
34
|
+
stopColor: "#CCD4E3"
|
35
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
36
|
+
offset: 1,
|
37
|
+
stopColor: "#6B7D99"
|
38
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
39
|
+
id: "paint1_radial_KubernetesService16GrayIcon_1803_55716",
|
40
|
+
cx: 0,
|
41
|
+
cy: 0,
|
42
|
+
r: 1,
|
43
|
+
gradientUnits: "userSpaceOnUse",
|
44
|
+
gradientTransform: "matrix(15.45974 -15.14734 15.14419 15.45653 .27 15.574)"
|
45
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
46
|
+
stopColor: "#CCD4E3"
|
47
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
48
|
+
offset: 1,
|
49
|
+
stopColor: "#6B7D99"
|
50
|
+
}))));
|
51
|
+
}
|
52
|
+
export default KubernetesService16GrayIcon;
|
@@ -0,0 +1,82 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function ObservabilityConfig24BlueIcon({
|
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
|
+
"data-testid": "ObservabilityConfig24BlueIcon",
|
13
|
+
"aria-labelledby": titleId
|
14
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
15
|
+
id: titleId
|
16
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
17
|
+
d: "M6.636 10.75H8a.5.5 0 00.457-.297l.737-1.657.987 4.072a.5.5 0 00.927.117L12.3 10.75h1.204a3.518 3.518 0 00.052-1H12a.5.5 0 00-.441.265l-.716 1.341L9.82 7.132a.5.5 0 00-.943-.085l-1.2 2.703H6.583a3.545 3.545 0 00.052 1z",
|
18
|
+
fill: "url(#paint0_radial_ObservabilityConfig24BlueIcon_4698_22331)"
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
20
|
+
fillRule: "evenodd",
|
21
|
+
clipRule: "evenodd",
|
22
|
+
d: "M13.943 13.236a5 5 0 10-.707.707l1.21 1.21a.5.5 0 000 .707l3.05 3.05a.5.5 0 00.707 0l.707-.707a.5.5 0 000-.707l-3.05-3.05a.5.5 0 00-.707 0l-1.21-1.21zm.115-3.486a4 4 0 10-7.974.642 4 4 0 007.974-.642z",
|
23
|
+
fill: "url(#paint1_radial_ObservabilityConfig24BlueIcon_4698_22331)"
|
24
|
+
}), /*#__PURE__*/React.createElement("path", {
|
25
|
+
d: "M16.07 10.07c0 .23-.013.457-.038.68H19v-1h-2.938c.005.106.008.213.008.32z",
|
26
|
+
fill: "url(#paint2_radial_ObservabilityConfig24BlueIcon_4698_22331)"
|
27
|
+
}), /*#__PURE__*/React.createElement("path", {
|
28
|
+
fillRule: "evenodd",
|
29
|
+
clipRule: "evenodd",
|
30
|
+
d: "M5 3a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2V5a2 2 0 00-2-2H5zm14 1H5a1 1 0 00-1 1v14a1 1 0 001 1h14a1 1 0 001-1V5a1 1 0 00-1-1z",
|
31
|
+
fill: "url(#paint3_radial_ObservabilityConfig24BlueIcon_4698_22331)"
|
32
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
33
|
+
id: "paint0_radial_ObservabilityConfig24BlueIcon_4698_22331",
|
34
|
+
cx: 0,
|
35
|
+
cy: 0,
|
36
|
+
r: 1,
|
37
|
+
gradientUnits: "userSpaceOnUse",
|
38
|
+
gradientTransform: "rotate(-45 26.85 6.879) scale(25.4558)"
|
39
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
40
|
+
stopColor: "#5BCAFF"
|
41
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
42
|
+
offset: 1,
|
43
|
+
stopColor: "#06F"
|
44
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
45
|
+
id: "paint1_radial_ObservabilityConfig24BlueIcon_4698_22331",
|
46
|
+
cx: 0,
|
47
|
+
cy: 0,
|
48
|
+
r: 1,
|
49
|
+
gradientUnits: "userSpaceOnUse",
|
50
|
+
gradientTransform: "rotate(-45 26.85 6.879) scale(25.4558)"
|
51
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
52
|
+
stopColor: "#5BCAFF"
|
53
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
54
|
+
offset: 1,
|
55
|
+
stopColor: "#06F"
|
56
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
57
|
+
id: "paint2_radial_ObservabilityConfig24BlueIcon_4698_22331",
|
58
|
+
cx: 0,
|
59
|
+
cy: 0,
|
60
|
+
r: 1,
|
61
|
+
gradientUnits: "userSpaceOnUse",
|
62
|
+
gradientTransform: "rotate(-45 26.85 6.879) scale(25.4558)"
|
63
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
64
|
+
stopColor: "#5BCAFF"
|
65
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
66
|
+
offset: 1,
|
67
|
+
stopColor: "#06F"
|
68
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
69
|
+
id: "paint3_radial_ObservabilityConfig24BlueIcon_4698_22331",
|
70
|
+
cx: 0,
|
71
|
+
cy: 0,
|
72
|
+
r: 1,
|
73
|
+
gradientUnits: "userSpaceOnUse",
|
74
|
+
gradientTransform: "rotate(-45 26.85 6.879) scale(25.4558)"
|
75
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
76
|
+
stopColor: "#5BCAFF"
|
77
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
78
|
+
offset: 1,
|
79
|
+
stopColor: "#06F"
|
80
|
+
}))));
|
81
|
+
}
|
82
|
+
export default ObservabilityConfig24BlueIcon;
|
@@ -0,0 +1,34 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function ObservabilityConfig24WhiteIcon({
|
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
|
+
"data-testid": "ObservabilityConfig24WhiteIcon",
|
13
|
+
"aria-labelledby": titleId
|
14
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
15
|
+
id: titleId
|
16
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
17
|
+
d: "M6.636 10.75H8a.5.5 0 00.457-.297l.737-1.657.987 4.072a.5.5 0 00.927.117L12.3 10.75h1.204a3.518 3.518 0 00.052-1H12a.5.5 0 00-.441.265l-.716 1.341L9.82 7.132a.5.5 0 00-.943-.085l-1.2 2.703H6.583a3.545 3.545 0 00.052 1z",
|
18
|
+
fill: "#fff"
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
20
|
+
fillRule: "evenodd",
|
21
|
+
clipRule: "evenodd",
|
22
|
+
d: "M13.943 13.236a5 5 0 10-.707.707l1.21 1.21a.5.5 0 000 .707l3.05 3.05a.5.5 0 00.707 0l.707-.707a.5.5 0 000-.707l-3.05-3.05a.5.5 0 00-.707 0l-1.21-1.21zm.115-3.486a4 4 0 10-7.974.642 4 4 0 007.974-.642z",
|
23
|
+
fill: "#fff"
|
24
|
+
}), /*#__PURE__*/React.createElement("path", {
|
25
|
+
d: "M16.07 10.07c0 .23-.013.457-.038.68H19v-1h-2.938c.005.106.008.213.008.32z",
|
26
|
+
fill: "#fff"
|
27
|
+
}), /*#__PURE__*/React.createElement("path", {
|
28
|
+
fillRule: "evenodd",
|
29
|
+
clipRule: "evenodd",
|
30
|
+
d: "M5 3a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2V5a2 2 0 00-2-2H5zm14 1H5a1 1 0 00-1 1v14a1 1 0 001 1h14a1 1 0 001-1V5a1 1 0 00-1-1z",
|
31
|
+
fill: "#fff"
|
32
|
+
}));
|
33
|
+
}
|
34
|
+
export default ObservabilityConfig24WhiteIcon;
|
@@ -0,0 +1,52 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function SksSystemService16BlueIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}) {
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
+
width: 16,
|
9
|
+
height: 16,
|
10
|
+
fill: "none",
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
12
|
+
"data-testid": "SksSystemService16BlueIcon",
|
13
|
+
"aria-labelledby": titleId
|
14
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
15
|
+
id: titleId
|
16
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
17
|
+
fillRule: "evenodd",
|
18
|
+
clipRule: "evenodd",
|
19
|
+
d: "M8 11.036a6.8 6.8 0 01-1.034.597c-.381.173-.763.29-1.114.311-.35.021-.731-.052-1.014-.335-.283-.283-.356-.664-.335-1.014.021-.351.138-.732.311-1.114.15-.33.352-.68.597-1.034a6.8 6.8 0 01-.597-1.034c-.173-.382-.29-.763-.31-1.114-.022-.35.051-.731.334-1.014.283-.283.664-.356 1.014-.335.351.021.733.138 1.114.311.33.15.68.351 1.034.596a6.8 6.8 0 011.035-.596c.381-.173.762-.29 1.113-.311.35-.021.732.052 1.015.335.282.283.355.664.335 1.014-.022.35-.138.732-.312 1.114-.15.33-.351.679-.596 1.034a6.8 6.8 0 01.597 1.034c.173.382.29.763.31 1.114.022.35-.051.731-.334 1.014-.283.283-.664.356-1.014.335-.351-.021-.733-.138-1.114-.311-.33-.15-.68-.351-1.035-.597zm-2.455-.134c-.008-.008-.055-.06-.043-.247.01-.185.078-.442.223-.76.088-.193.2-.4.334-.615a11.005 11.005 0 001.108 1.108 5.308 5.308 0 01-.615.335c-.317.144-.574.212-.76.223-.186.011-.239-.036-.247-.044zM9.942 9.28c.134.215.246.422.334.615.145.318.212.575.223.76.011.186-.035.24-.043.247-.008.008-.061.055-.247.044-.186-.011-.443-.08-.76-.223-.194-.088-.4-.2-.615-.335A10.967 10.967 0 009.942 9.28zm-.605-.833A9.858 9.858 0 018 9.783a9.857 9.857 0 01-1.336-1.336A9.859 9.859 0 018 7.11a9.858 9.858 0 011.337 1.336zm.605-.833c.134-.215.246-.422.334-.615.144-.318.212-.575.223-.76.011-.186-.035-.24-.043-.247-.008-.008-.061-.055-.248-.044-.185.011-.442.079-.76.223-.193.088-.4.2-.614.335a11.013 11.013 0 011.108 1.108zM7.167 6.506a5.318 5.318 0 00-.615-.335c-.317-.144-.574-.212-.76-.223-.186-.011-.239.036-.247.044-.008.008-.055.06-.043.247.01.185.079.442.223.76.088.193.2.4.334.615a11.006 11.006 0 011.108-1.108z",
|
20
|
+
fill: "url(#paint0_radial_SksSystemService16BlueIcon_730_73598)"
|
21
|
+
}), /*#__PURE__*/React.createElement("path", {
|
22
|
+
fillRule: "evenodd",
|
23
|
+
clipRule: "evenodd",
|
24
|
+
d: "M8.477.989a1.1 1.1 0 00-.954 0L2.57 3.374a1.1 1.1 0 00-.595.746L.752 9.479a1.1 1.1 0 00.213.93l3.427 4.298a1.1 1.1 0 00.86.414h5.496a1.1 1.1 0 00.86-.414l3.427-4.298a1.1 1.1 0 00.213-.93l-1.224-5.36a1.1 1.1 0 00-.595-.745L8.477.989zm-.52.9a.1.1 0 01.086 0l4.952 2.386a.1.1 0 01.055.067l1.223 5.36a.1.1 0 01-.02.084l-3.427 4.297a.1.1 0 01-.078.038H5.252a.1.1 0 01-.079-.038L1.746 9.786a.1.1 0 01-.019-.085L2.95 4.342a.1.1 0 01.054-.067L7.956 1.89z",
|
25
|
+
fill: "url(#paint1_radial_SksSystemService16BlueIcon_730_73598)"
|
26
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
27
|
+
id: "paint0_radial_SksSystemService16BlueIcon_730_73598",
|
28
|
+
cx: 0,
|
29
|
+
cy: 0,
|
30
|
+
r: 1,
|
31
|
+
gradientUnits: "userSpaceOnUse",
|
32
|
+
gradientTransform: "matrix(14.55048 -14.24082 14.23753 14.54712 .725 15.12)"
|
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_SksSystemService16BlueIcon_730_73598",
|
40
|
+
cx: 0,
|
41
|
+
cy: 0,
|
42
|
+
r: 1,
|
43
|
+
gradientUnits: "userSpaceOnUse",
|
44
|
+
gradientTransform: "matrix(14.55048 -14.24082 14.23753 14.54712 .725 15.12)"
|
45
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
46
|
+
stopColor: "#5BCAFF"
|
47
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
48
|
+
offset: 1,
|
49
|
+
stopColor: "#06F"
|
50
|
+
}))));
|
51
|
+
}
|
52
|
+
export default SksSystemService16BlueIcon;
|
@@ -0,0 +1,52 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function SksSystemService16GrayIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}) {
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
+
width: 16,
|
9
|
+
height: 16,
|
10
|
+
fill: "none",
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
12
|
+
"data-testid": "SksSystemService16GrayIcon",
|
13
|
+
"aria-labelledby": titleId
|
14
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
15
|
+
id: titleId
|
16
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
17
|
+
fillRule: "evenodd",
|
18
|
+
clipRule: "evenodd",
|
19
|
+
d: "M8 11.036a6.8 6.8 0 01-1.034.597c-.381.173-.763.29-1.114.311-.35.021-.731-.052-1.014-.335-.283-.283-.356-.664-.335-1.014.021-.351.138-.732.311-1.114.15-.33.352-.68.597-1.034a6.8 6.8 0 01-.597-1.034c-.173-.382-.29-.763-.31-1.114-.022-.35.051-.731.334-1.014.283-.283.664-.356 1.014-.335.351.021.733.138 1.114.311.33.15.68.351 1.034.596a6.8 6.8 0 011.035-.596c.381-.173.762-.29 1.113-.311.35-.021.732.052 1.015.335.282.283.355.664.335 1.014-.022.35-.138.732-.312 1.114-.15.33-.351.679-.596 1.034a6.8 6.8 0 01.597 1.034c.173.382.29.763.31 1.114.022.35-.051.731-.334 1.014-.283.283-.664.356-1.014.335-.351-.021-.733-.138-1.114-.311-.33-.15-.68-.351-1.035-.597zm-2.455-.134c-.008-.008-.055-.06-.043-.247.01-.185.078-.442.223-.76.088-.193.2-.4.334-.615a11.005 11.005 0 001.108 1.108 5.308 5.308 0 01-.615.335c-.317.144-.574.212-.76.223-.186.011-.239-.036-.247-.044zM9.942 9.28c.134.215.246.422.334.615.145.318.212.575.223.76.011.186-.035.24-.043.247-.008.008-.061.055-.247.044-.186-.011-.443-.08-.76-.223-.194-.088-.4-.2-.615-.335A10.967 10.967 0 009.942 9.28zm-.605-.833A9.858 9.858 0 018 9.783a9.857 9.857 0 01-1.336-1.336A9.859 9.859 0 018 7.11a9.858 9.858 0 011.337 1.336zm.605-.833c.134-.215.246-.422.334-.615.144-.318.212-.575.223-.76.011-.186-.035-.24-.043-.247-.008-.008-.061-.055-.248-.044-.185.011-.442.079-.76.223-.193.088-.4.2-.614.335a11.013 11.013 0 011.108 1.108zM7.167 6.506a5.318 5.318 0 00-.615-.335c-.317-.144-.574-.212-.76-.223-.186-.011-.239.036-.247.044-.008.008-.055.06-.043.247.01.185.079.442.223.76.088.193.2.4.334.615a11.006 11.006 0 011.108-1.108z",
|
20
|
+
fill: "url(#paint0_radial_SksSystemService16GrayIcon_1803_55726)"
|
21
|
+
}), /*#__PURE__*/React.createElement("path", {
|
22
|
+
fillRule: "evenodd",
|
23
|
+
clipRule: "evenodd",
|
24
|
+
d: "M8.477.989a1.1 1.1 0 00-.954 0L2.57 3.374a1.1 1.1 0 00-.595.746L.752 9.479a1.1 1.1 0 00.213.93l3.427 4.298a1.1 1.1 0 00.86.414h5.496a1.1 1.1 0 00.86-.414l3.427-4.298a1.1 1.1 0 00.213-.93l-1.224-5.36a1.1 1.1 0 00-.595-.745L8.477.989zm-.52.9a.1.1 0 01.086 0l4.952 2.386a.1.1 0 01.055.067l1.223 5.36a.1.1 0 01-.02.084l-3.427 4.297a.1.1 0 01-.078.038H5.252a.1.1 0 01-.079-.038L1.746 9.786a.1.1 0 01-.019-.085L2.95 4.342a.1.1 0 01.054-.067L7.956 1.89z",
|
25
|
+
fill: "url(#paint1_radial_SksSystemService16GrayIcon_1803_55726)"
|
26
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
27
|
+
id: "paint0_radial_SksSystemService16GrayIcon_1803_55726",
|
28
|
+
cx: 0,
|
29
|
+
cy: 0,
|
30
|
+
r: 1,
|
31
|
+
gradientUnits: "userSpaceOnUse",
|
32
|
+
gradientTransform: "matrix(14.55048 -14.24082 14.23753 14.54712 .725 15.12)"
|
33
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
34
|
+
stopColor: "#CCD4E3"
|
35
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
36
|
+
offset: 1,
|
37
|
+
stopColor: "#6B7D99"
|
38
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
39
|
+
id: "paint1_radial_SksSystemService16GrayIcon_1803_55726",
|
40
|
+
cx: 0,
|
41
|
+
cy: 0,
|
42
|
+
r: 1,
|
43
|
+
gradientUnits: "userSpaceOnUse",
|
44
|
+
gradientTransform: "matrix(14.55048 -14.24082 14.23753 14.54712 .725 15.12)"
|
45
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
46
|
+
stopColor: "#CCD4E3"
|
47
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
48
|
+
offset: 1,
|
49
|
+
stopColor: "#6B7D99"
|
50
|
+
}))));
|
51
|
+
}
|
52
|
+
export default SksSystemService16GrayIcon;
|
@@ -0,0 +1,28 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function SksSystemService16WhiteIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}) {
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
+
width: 16,
|
9
|
+
height: 16,
|
10
|
+
fill: "none",
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
12
|
+
"data-testid": "SksSystemService16WhiteIcon",
|
13
|
+
"aria-labelledby": titleId
|
14
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
15
|
+
id: titleId
|
16
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
17
|
+
fillRule: "evenodd",
|
18
|
+
clipRule: "evenodd",
|
19
|
+
d: "M8 11.036a6.8 6.8 0 01-1.034.597c-.381.173-.763.29-1.114.311-.35.021-.731-.052-1.014-.335-.283-.283-.356-.664-.335-1.014.021-.351.138-.732.311-1.114.15-.33.352-.68.597-1.034a6.8 6.8 0 01-.597-1.034c-.173-.382-.29-.763-.31-1.114-.022-.35.051-.731.334-1.014.283-.283.664-.356 1.014-.335.351.021.733.138 1.114.311.33.15.68.351 1.034.596a6.8 6.8 0 011.035-.596c.381-.173.762-.29 1.113-.311.35-.021.732.052 1.015.335.282.283.355.664.335 1.014-.022.35-.138.732-.312 1.114-.15.33-.351.679-.596 1.034a6.8 6.8 0 01.597 1.034c.173.382.29.763.31 1.114.022.35-.051.731-.334 1.014-.283.283-.664.356-1.014.335-.351-.021-.733-.138-1.114-.311-.33-.15-.68-.351-1.035-.597zm-2.455-.134c-.008-.008-.055-.06-.043-.247.01-.185.078-.442.223-.76.088-.193.2-.4.334-.615a11.005 11.005 0 001.108 1.108 5.308 5.308 0 01-.615.335c-.317.144-.574.212-.76.223-.186.011-.239-.036-.247-.044zM9.942 9.28c.134.215.246.422.334.615.145.318.212.575.223.76.011.186-.035.24-.043.247-.008.008-.061.055-.247.044-.186-.011-.443-.08-.76-.223-.194-.088-.4-.2-.615-.335A10.967 10.967 0 009.942 9.28zm-.605-.833A9.858 9.858 0 018 9.783a9.857 9.857 0 01-1.336-1.336A9.859 9.859 0 018 7.11a9.858 9.858 0 011.337 1.336zm.605-.833c.134-.215.246-.422.334-.615.144-.318.212-.575.223-.76.011-.186-.035-.24-.043-.247-.008-.008-.061-.055-.248-.044-.185.011-.442.079-.76.223-.193.088-.4.2-.614.335a11.013 11.013 0 011.108 1.108zM7.167 6.506a5.318 5.318 0 00-.615-.335c-.317-.144-.574-.212-.76-.223-.186-.011-.239.036-.247.044-.008.008-.055.06-.043.247.01.185.079.442.223.76.088.193.2.4.334.615a11.006 11.006 0 011.108-1.108z",
|
20
|
+
fill: "#fff"
|
21
|
+
}), /*#__PURE__*/React.createElement("path", {
|
22
|
+
fillRule: "evenodd",
|
23
|
+
clipRule: "evenodd",
|
24
|
+
d: "M8.477.989a1.1 1.1 0 00-.954 0L2.57 3.374a1.1 1.1 0 00-.595.746L.752 9.479a1.1 1.1 0 00.213.93l3.427 4.298a1.1 1.1 0 00.86.414h5.496a1.1 1.1 0 00.86-.414l3.427-4.298a1.1 1.1 0 00.213-.93l-1.224-5.36a1.1 1.1 0 00-.595-.745L8.477.989zm-.52.9a.1.1 0 01.086 0l4.952 2.386a.1.1 0 01.055.067l1.223 5.36a.1.1 0 01-.02.084l-3.427 4.297a.1.1 0 01-.078.038H5.252a.1.1 0 01-.079-.038L1.746 9.786a.1.1 0 01-.019-.085L2.95 4.342a.1.1 0 01.054-.067L7.956 1.89z",
|
25
|
+
fill: "#fff"
|
26
|
+
}));
|
27
|
+
}
|
28
|
+
export default SksSystemService16WhiteIcon;
|
@@ -0,0 +1,52 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function WorkloadCluster16BlueIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}) {
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
+
width: 16,
|
9
|
+
height: 16,
|
10
|
+
fill: "none",
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
12
|
+
"data-testid": "WorkloadCluster16BlueIcon",
|
13
|
+
"aria-labelledby": titleId
|
14
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
15
|
+
id: titleId
|
16
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
17
|
+
fillRule: "evenodd",
|
18
|
+
clipRule: "evenodd",
|
19
|
+
d: "M8.45 4.502a.9.9 0 00-.9 0l-2.631 1.52a.9.9 0 00-.45.779v3.038a.9.9 0 00.45.78l2.63 1.518a.9.9 0 00.9 0l2.632-1.519a.9.9 0 00.45-.78V6.802a.9.9 0 00-.45-.78L8.45 4.502zM5.469 9.781V6.858l2.53-1.46 2.532 1.46v2.923L8 11.242 5.469 9.781z",
|
20
|
+
fill: "url(#paint0_radial_WorkloadCluster16BlueIcon_730_73601)"
|
21
|
+
}), /*#__PURE__*/React.createElement("path", {
|
22
|
+
fillRule: "evenodd",
|
23
|
+
clipRule: "evenodd",
|
24
|
+
d: "M7.523.989a1.1 1.1 0 01.954 0l4.952 2.385c.302.145.521.42.595.746l1.224 5.359a1.1 1.1 0 01-.213.93l-3.427 4.298a1.1 1.1 0 01-.86.414H5.252a1.1 1.1 0 01-.86-.414L.965 10.409a1.1 1.1 0 01-.213-.93l1.223-5.36a1.1 1.1 0 01.595-.745L7.523.989zm.52.9a.1.1 0 00-.087 0L3.004 4.276a.1.1 0 00-.054.067l-1.223 5.36a.1.1 0 00.02.084l3.426 4.297a.1.1 0 00.079.038h5.496a.1.1 0 00.078-.038l3.427-4.297a.1.1 0 00.02-.085L13.05 4.342a.1.1 0 00-.055-.067L8.043 1.89z",
|
25
|
+
fill: "url(#paint1_radial_WorkloadCluster16BlueIcon_730_73601)"
|
26
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
27
|
+
id: "paint0_radial_WorkloadCluster16BlueIcon_730_73601",
|
28
|
+
cx: 0,
|
29
|
+
cy: 0,
|
30
|
+
r: 1,
|
31
|
+
gradientUnits: "userSpaceOnUse",
|
32
|
+
gradientTransform: "matrix(14.55048 -14.24082 14.23753 14.54712 .725 15.12)"
|
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_WorkloadCluster16BlueIcon_730_73601",
|
40
|
+
cx: 0,
|
41
|
+
cy: 0,
|
42
|
+
r: 1,
|
43
|
+
gradientUnits: "userSpaceOnUse",
|
44
|
+
gradientTransform: "matrix(14.55048 -14.24082 14.23753 14.54712 .725 15.12)"
|
45
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
46
|
+
stopColor: "#5BCAFF"
|
47
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
48
|
+
offset: 1,
|
49
|
+
stopColor: "#06F"
|
50
|
+
}))));
|
51
|
+
}
|
52
|
+
export default WorkloadCluster16BlueIcon;
|
@@ -0,0 +1,52 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function WorkloadCluster16GrayIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}) {
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
+
width: 16,
|
9
|
+
height: 16,
|
10
|
+
fill: "none",
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
12
|
+
"data-testid": "WorkloadCluster16GrayIcon",
|
13
|
+
"aria-labelledby": titleId
|
14
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
15
|
+
id: titleId
|
16
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
17
|
+
fillRule: "evenodd",
|
18
|
+
clipRule: "evenodd",
|
19
|
+
d: "M8.45 4.502a.9.9 0 00-.9 0l-2.631 1.52a.9.9 0 00-.45.779v3.038a.9.9 0 00.45.78l2.63 1.518a.9.9 0 00.9 0l2.632-1.519a.9.9 0 00.45-.78V6.802a.9.9 0 00-.45-.78L8.45 4.502zM5.469 9.781V6.858l2.53-1.46 2.532 1.46v2.923L8 11.242 5.469 9.781z",
|
20
|
+
fill: "url(#paint0_radial_WorkloadCluster16GrayIcon_730_74286)"
|
21
|
+
}), /*#__PURE__*/React.createElement("path", {
|
22
|
+
fillRule: "evenodd",
|
23
|
+
clipRule: "evenodd",
|
24
|
+
d: "M7.523.989a1.1 1.1 0 01.954 0l4.952 2.385c.302.145.521.42.595.746l1.224 5.359a1.1 1.1 0 01-.213.93l-3.427 4.298a1.1 1.1 0 01-.86.414H5.252a1.1 1.1 0 01-.86-.414L.965 10.409a1.1 1.1 0 01-.213-.93l1.223-5.36a1.1 1.1 0 01.595-.745L7.523.989zm.52.9a.1.1 0 00-.087 0L3.004 4.276a.1.1 0 00-.054.067l-1.223 5.36a.1.1 0 00.02.084l3.426 4.297a.1.1 0 00.079.038h5.496a.1.1 0 00.078-.038l3.427-4.297a.1.1 0 00.02-.085L13.05 4.342a.1.1 0 00-.055-.067L8.043 1.89z",
|
25
|
+
fill: "url(#paint1_radial_WorkloadCluster16GrayIcon_730_74286)"
|
26
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
27
|
+
id: "paint0_radial_WorkloadCluster16GrayIcon_730_74286",
|
28
|
+
cx: 0,
|
29
|
+
cy: 0,
|
30
|
+
r: 1,
|
31
|
+
gradientUnits: "userSpaceOnUse",
|
32
|
+
gradientTransform: "matrix(14.55048 -14.24082 14.23753 14.54712 .725 15.12)"
|
33
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
34
|
+
stopColor: "#CCD4E3"
|
35
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
36
|
+
offset: 1,
|
37
|
+
stopColor: "#6B7D99"
|
38
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
39
|
+
id: "paint1_radial_WorkloadCluster16GrayIcon_730_74286",
|
40
|
+
cx: 0,
|
41
|
+
cy: 0,
|
42
|
+
r: 1,
|
43
|
+
gradientUnits: "userSpaceOnUse",
|
44
|
+
gradientTransform: "matrix(14.55048 -14.24082 14.23753 14.54712 .725 15.12)"
|
45
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
46
|
+
stopColor: "#CCD4E3"
|
47
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
48
|
+
offset: 1,
|
49
|
+
stopColor: "#6B7D99"
|
50
|
+
}))));
|
51
|
+
}
|
52
|
+
export default WorkloadCluster16GrayIcon;
|
@@ -0,0 +1,28 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function WorkloadCluster16WhiteIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}) {
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
+
width: 16,
|
9
|
+
height: 16,
|
10
|
+
fill: "none",
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
12
|
+
"data-testid": "WorkloadCluster16WhiteIcon",
|
13
|
+
"aria-labelledby": titleId
|
14
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
15
|
+
id: titleId
|
16
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
17
|
+
fillRule: "evenodd",
|
18
|
+
clipRule: "evenodd",
|
19
|
+
d: "M8.45 4.502a.9.9 0 00-.9 0l-2.631 1.52a.9.9 0 00-.45.779v3.038a.9.9 0 00.45.78l2.63 1.518a.9.9 0 00.9 0l2.632-1.519a.9.9 0 00.45-.78V6.802a.9.9 0 00-.45-.78L8.45 4.502zM5.469 9.781V6.858l2.53-1.46 2.532 1.46v2.923L8 11.242 5.469 9.781z",
|
20
|
+
fill: "#fff"
|
21
|
+
}), /*#__PURE__*/React.createElement("path", {
|
22
|
+
fillRule: "evenodd",
|
23
|
+
clipRule: "evenodd",
|
24
|
+
d: "M7.523.989a1.1 1.1 0 01.954 0l4.952 2.385c.302.145.521.42.595.746l1.224 5.359a1.1 1.1 0 01-.213.93l-3.427 4.298a1.1 1.1 0 01-.86.414H5.252a1.1 1.1 0 01-.86-.414L.965 10.409a1.1 1.1 0 01-.213-.93l1.223-5.36a1.1 1.1 0 01.595-.745L7.523.989zm.52.9a.1.1 0 00-.087 0L3.004 4.276a.1.1 0 00-.054.067l-1.223 5.36a.1.1 0 00.02.084l3.426 4.297a.1.1 0 00.079.038h5.496a.1.1 0 00.078-.038l3.427-4.297a.1.1 0 00.02-.085L13.05 4.342a.1.1 0 00-.055-.067L8.043 1.89z",
|
25
|
+
fill: "#fff"
|
26
|
+
}));
|
27
|
+
}
|
28
|
+
export default WorkloadCluster16WhiteIcon;
|
package/dist/esm/index.js
CHANGED
@@ -38,6 +38,7 @@ export { default as AlertBell16GradientBlueIcon } from './AlertBell16GradientBlu
|
|
38
38
|
export { default as AlertBell24BlueIcon } from './AlertBell24BlueIcon.js'
|
39
39
|
export { default as AlertBell24GradientBlueIcon } from './AlertBell24GradientBlueIcon.js'
|
40
40
|
export { default as AlertBell24GradientGrayIcon } from './AlertBell24GradientGrayIcon.js'
|
41
|
+
export { default as AlertBell24WhiteIcon } from './AlertBell24WhiteIcon.js'
|
41
42
|
export { default as AlertBell24Icon } from './AlertBell24Icon.js'
|
42
43
|
export { default as AlertBellArrow24GradientBlueIcon } from './AlertBellArrow24GradientBlueIcon.js'
|
43
44
|
export { default as AlertBellArrow24OntintIcon } from './AlertBellArrow24OntintIcon.js'
|
@@ -569,6 +570,7 @@ export { default as K8SObjectJob16GradientGrayIcon } from './K8SObjectJob16Gradi
|
|
569
570
|
export { default as K8SObjectJob24GradientBlueIcon } from './K8SObjectJob24GradientBlueIcon.js'
|
570
571
|
export { default as K8SObjectStatefulset16GradientGrayIcon } from './K8SObjectStatefulset16GradientGrayIcon.js'
|
571
572
|
export { default as K8SObjectStatefulset24GradientBlueIcon } from './K8SObjectStatefulset24GradientBlueIcon.js'
|
573
|
+
export { default as KubernetesService16GrayIcon } from './KubernetesService16GrayIcon.js'
|
572
574
|
export { default as L2Gw16GradientBlueIcon } from './L2Gw16GradientBlueIcon.js'
|
573
575
|
export { default as L2Gw16GradientGreyIcon } from './L2Gw16GradientGreyIcon.js'
|
574
576
|
export { default as L2Gw16OntintIcon } from './L2Gw16OntintIcon.js'
|
@@ -803,6 +805,8 @@ export { default as NvmeNamespaceStorageObject24GrayIcon } from './NvmeNamespace
|
|
803
805
|
export { default as NvmeSubsystemDatastoreStorageObject16GradientBlueIcon } from './NvmeSubsystemDatastoreStorageObject16GradientBlueIcon.js'
|
804
806
|
export { default as NvmeSubsystemDatastoreStorageObject24BlueIcon } from './NvmeSubsystemDatastoreStorageObject24BlueIcon.js'
|
805
807
|
export { default as NvmeSubsystemDatastoreStorageObject24GrayIcon } from './NvmeSubsystemDatastoreStorageObject24GrayIcon.js'
|
808
|
+
export { default as ObservabilityConfig24BlueIcon } from './ObservabilityConfig24BlueIcon.js'
|
809
|
+
export { default as ObservabilityConfig24WhiteIcon } from './ObservabilityConfig24WhiteIcon.js'
|
806
810
|
export { default as ObservabilityService16GradientBlueIcon } from './ObservabilityService16GradientBlueIcon.js'
|
807
811
|
export { default as ObservabilityService16GradientGrayIcon } from './ObservabilityService16GradientGrayIcon.js'
|
808
812
|
export { default as OpenTerminal16GradientBlueIcon } from './OpenTerminal16GradientBlueIcon.js'
|
@@ -1259,6 +1263,9 @@ export { default as SksServiceUpgrade24BlueIcon } from './SksServiceUpgrade24Blu
|
|
1259
1263
|
export { default as SksServiceUpgrade24WhiteIcon } from './SksServiceUpgrade24WhiteIcon.js'
|
1260
1264
|
export { default as SksStorageClass24Icon } from './SksStorageClass24Icon.js'
|
1261
1265
|
export { default as SksStorageClassIcon } from './SksStorageClassIcon.js'
|
1266
|
+
export { default as SksSystemService16BlueIcon } from './SksSystemService16BlueIcon.js'
|
1267
|
+
export { default as SksSystemService16GrayIcon } from './SksSystemService16GrayIcon.js'
|
1268
|
+
export { default as SksSystemService16WhiteIcon } from './SksSystemService16WhiteIcon.js'
|
1262
1269
|
export { default as SksUpgradeCluster24Icon } from './SksUpgradeCluster24Icon.js'
|
1263
1270
|
export { default as SksUpgradeClusterIcon } from './SksUpgradeClusterIcon.js'
|
1264
1271
|
export { default as SksWorker24Icon } from './SksWorker24Icon.js'
|
@@ -1555,6 +1562,9 @@ export { default as WitnessNodeSmallCriticalRedIcon } from './WitnessNodeSmallCr
|
|
1555
1562
|
export { default as WitnessNodeSmallHealthyGreenIcon } from './WitnessNodeSmallHealthyGreenIcon.js'
|
1556
1563
|
export { default as WitnessNodeSmallInfoBlueIcon } from './WitnessNodeSmallInfoBlueIcon.js'
|
1557
1564
|
export { default as WitnessNodeSmallNoticeYellowIcon } from './WitnessNodeSmallNoticeYellowIcon.js'
|
1565
|
+
export { default as WorkloadCluster16BlueIcon } from './WorkloadCluster16BlueIcon.js'
|
1566
|
+
export { default as WorkloadCluster16GrayIcon } from './WorkloadCluster16GrayIcon.js'
|
1567
|
+
export { default as WorkloadCluster16WhiteIcon } from './WorkloadCluster16WhiteIcon.js'
|
1558
1568
|
export { default as WorkloadClusters16GradientBlueIcon } from './WorkloadClusters16GradientBlueIcon.js'
|
1559
1569
|
export { default as XlsxIcon } from './XlsxIcon.js'
|
1560
1570
|
export { default as XmarkClearFill24SecondaryIcon } from './XmarkClearFill24SecondaryIcon.js'
|