@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,23 @@
|
|
1
|
+
const React = require("react");
|
2
|
+
function AlertBell24WhiteIcon({
|
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": "AlertBell24WhiteIcon",
|
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: "M11.999 1.8a2.5 2.5 0 00-2.458 2.042c-1.076.35-1.837.949-2.367 1.714-.573.827-.853 1.816-1.01 2.81-.127.801-.179 1.643-.228 2.436-.01.185-.022.368-.034.547-.065.966-.151 1.815-.377 2.493-.297.89-.715 1.324-1.117 1.723l-.058.058c-.4.394-.85.841-.967 1.668-.119.843.457 1.399 1.057 1.565C4.932 19 5.585 19 5.968 19h3.031a3 3 0 106 0h3.03c.385 0 1.04 0 1.527-.14.588-.167 1.185-.716 1.058-1.573-.122-.823-.57-1.268-.968-1.661l-.06-.06c-.4-.399-.816-.833-1.113-1.724-.226-.678-.312-1.527-.377-2.493l-.034-.547c-.049-.792-.1-1.635-.228-2.436-.157-.994-.437-1.983-1.01-2.81-.53-.765-1.291-1.364-2.367-1.714A2.5 2.5 0 0012 1.8zM10.5 4.246a1.5 1.5 0 012.998 0 .5.5 0 00.373.467c1.033.27 1.69.776 2.13 1.412.451.65.699 1.47.846 2.397.118.75.166 1.531.215 2.32l.036.574c.065.959.155 1.928.427 2.742.37 1.109.913 1.675 1.356 2.116l.013.013c.424.423.658.656.73 1.146a.36.36 0 01-.064.29.535.535 0 01-.278.176c-.339.097-.859.101-1.283.101h-12c-.425 0-.942-.004-1.28-.104l-.01-.003a.507.507 0 01-.27-.17.369.369 0 01-.066-.292c.069-.49.302-.722.73-1.147l.01-.01c.444-.44.99-1.006 1.36-2.116.272-.814.362-1.783.427-2.742l.036-.574c.049-.789.097-1.57.215-2.32.147-.927.395-1.746.846-2.397.44-.636 1.097-1.142 2.13-1.412a.5.5 0 00.373-.467zM13.999 19h-4a2 2 0 004 0z",
|
20
|
+
fill: "#fff"
|
21
|
+
}));
|
22
|
+
}
|
23
|
+
module.exports = AlertBell24WhiteIcon;
|
@@ -0,0 +1,52 @@
|
|
1
|
+
const React = require("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
|
+
module.exports = KubernetesService16GrayIcon;
|
@@ -0,0 +1,82 @@
|
|
1
|
+
const React = require("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
|
+
module.exports = ObservabilityConfig24BlueIcon;
|
@@ -0,0 +1,34 @@
|
|
1
|
+
const React = require("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
|
+
module.exports = ObservabilityConfig24WhiteIcon;
|
@@ -0,0 +1,52 @@
|
|
1
|
+
const React = require("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
|
+
module.exports = SksSystemService16BlueIcon;
|
@@ -0,0 +1,52 @@
|
|
1
|
+
const React = require("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
|
+
module.exports = SksSystemService16GrayIcon;
|
@@ -0,0 +1,28 @@
|
|
1
|
+
const React = require("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
|
+
module.exports = SksSystemService16WhiteIcon;
|
@@ -0,0 +1,52 @@
|
|
1
|
+
const React = require("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
|
+
module.exports = WorkloadCluster16BlueIcon;
|
@@ -0,0 +1,52 @@
|
|
1
|
+
const React = require("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
|
+
module.exports = WorkloadCluster16GrayIcon;
|
@@ -0,0 +1,28 @@
|
|
1
|
+
const React = require("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
|
+
module.exports = WorkloadCluster16WhiteIcon;
|
package/dist/cjs/index.js
CHANGED
@@ -38,6 +38,7 @@ module.exports.AlertBell16GradientBlueIcon = require("./AlertBell16GradientBlueI
|
|
38
38
|
module.exports.AlertBell24BlueIcon = require("./AlertBell24BlueIcon.js")
|
39
39
|
module.exports.AlertBell24GradientBlueIcon = require("./AlertBell24GradientBlueIcon.js")
|
40
40
|
module.exports.AlertBell24GradientGrayIcon = require("./AlertBell24GradientGrayIcon.js")
|
41
|
+
module.exports.AlertBell24WhiteIcon = require("./AlertBell24WhiteIcon.js")
|
41
42
|
module.exports.AlertBell24Icon = require("./AlertBell24Icon.js")
|
42
43
|
module.exports.AlertBellArrow24GradientBlueIcon = require("./AlertBellArrow24GradientBlueIcon.js")
|
43
44
|
module.exports.AlertBellArrow24OntintIcon = require("./AlertBellArrow24OntintIcon.js")
|
@@ -569,6 +570,7 @@ module.exports.K8SObjectJob16GradientGrayIcon = require("./K8SObjectJob16Gradien
|
|
569
570
|
module.exports.K8SObjectJob24GradientBlueIcon = require("./K8SObjectJob24GradientBlueIcon.js")
|
570
571
|
module.exports.K8SObjectStatefulset16GradientGrayIcon = require("./K8SObjectStatefulset16GradientGrayIcon.js")
|
571
572
|
module.exports.K8SObjectStatefulset24GradientBlueIcon = require("./K8SObjectStatefulset24GradientBlueIcon.js")
|
573
|
+
module.exports.KubernetesService16GrayIcon = require("./KubernetesService16GrayIcon.js")
|
572
574
|
module.exports.L2Gw16GradientBlueIcon = require("./L2Gw16GradientBlueIcon.js")
|
573
575
|
module.exports.L2Gw16GradientGreyIcon = require("./L2Gw16GradientGreyIcon.js")
|
574
576
|
module.exports.L2Gw16OntintIcon = require("./L2Gw16OntintIcon.js")
|
@@ -803,6 +805,8 @@ module.exports.NvmeNamespaceStorageObject24GrayIcon = require("./NvmeNamespaceSt
|
|
803
805
|
module.exports.NvmeSubsystemDatastoreStorageObject16GradientBlueIcon = require("./NvmeSubsystemDatastoreStorageObject16GradientBlueIcon.js")
|
804
806
|
module.exports.NvmeSubsystemDatastoreStorageObject24BlueIcon = require("./NvmeSubsystemDatastoreStorageObject24BlueIcon.js")
|
805
807
|
module.exports.NvmeSubsystemDatastoreStorageObject24GrayIcon = require("./NvmeSubsystemDatastoreStorageObject24GrayIcon.js")
|
808
|
+
module.exports.ObservabilityConfig24BlueIcon = require("./ObservabilityConfig24BlueIcon.js")
|
809
|
+
module.exports.ObservabilityConfig24WhiteIcon = require("./ObservabilityConfig24WhiteIcon.js")
|
806
810
|
module.exports.ObservabilityService16GradientBlueIcon = require("./ObservabilityService16GradientBlueIcon.js")
|
807
811
|
module.exports.ObservabilityService16GradientGrayIcon = require("./ObservabilityService16GradientGrayIcon.js")
|
808
812
|
module.exports.OpenTerminal16GradientBlueIcon = require("./OpenTerminal16GradientBlueIcon.js")
|
@@ -1259,6 +1263,9 @@ module.exports.SksServiceUpgrade24BlueIcon = require("./SksServiceUpgrade24BlueI
|
|
1259
1263
|
module.exports.SksServiceUpgrade24WhiteIcon = require("./SksServiceUpgrade24WhiteIcon.js")
|
1260
1264
|
module.exports.SksStorageClass24Icon = require("./SksStorageClass24Icon.js")
|
1261
1265
|
module.exports.SksStorageClassIcon = require("./SksStorageClassIcon.js")
|
1266
|
+
module.exports.SksSystemService16BlueIcon = require("./SksSystemService16BlueIcon.js")
|
1267
|
+
module.exports.SksSystemService16GrayIcon = require("./SksSystemService16GrayIcon.js")
|
1268
|
+
module.exports.SksSystemService16WhiteIcon = require("./SksSystemService16WhiteIcon.js")
|
1262
1269
|
module.exports.SksUpgradeCluster24Icon = require("./SksUpgradeCluster24Icon.js")
|
1263
1270
|
module.exports.SksUpgradeClusterIcon = require("./SksUpgradeClusterIcon.js")
|
1264
1271
|
module.exports.SksWorker24Icon = require("./SksWorker24Icon.js")
|
@@ -1555,6 +1562,9 @@ module.exports.WitnessNodeSmallCriticalRedIcon = require("./WitnessNodeSmallCrit
|
|
1555
1562
|
module.exports.WitnessNodeSmallHealthyGreenIcon = require("./WitnessNodeSmallHealthyGreenIcon.js")
|
1556
1563
|
module.exports.WitnessNodeSmallInfoBlueIcon = require("./WitnessNodeSmallInfoBlueIcon.js")
|
1557
1564
|
module.exports.WitnessNodeSmallNoticeYellowIcon = require("./WitnessNodeSmallNoticeYellowIcon.js")
|
1565
|
+
module.exports.WorkloadCluster16BlueIcon = require("./WorkloadCluster16BlueIcon.js")
|
1566
|
+
module.exports.WorkloadCluster16GrayIcon = require("./WorkloadCluster16GrayIcon.js")
|
1567
|
+
module.exports.WorkloadCluster16WhiteIcon = require("./WorkloadCluster16WhiteIcon.js")
|
1558
1568
|
module.exports.WorkloadClusters16GradientBlueIcon = require("./WorkloadClusters16GradientBlueIcon.js")
|
1559
1569
|
module.exports.XlsxIcon = require("./XlsxIcon.js")
|
1560
1570
|
module.exports.XmarkClearFill24SecondaryIcon = require("./XmarkClearFill24SecondaryIcon.js")
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function AlertBell24WhiteIcon({
|
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": "AlertBell24WhiteIcon",
|
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: "M11.999 1.8a2.5 2.5 0 00-2.458 2.042c-1.076.35-1.837.949-2.367 1.714-.573.827-.853 1.816-1.01 2.81-.127.801-.179 1.643-.228 2.436-.01.185-.022.368-.034.547-.065.966-.151 1.815-.377 2.493-.297.89-.715 1.324-1.117 1.723l-.058.058c-.4.394-.85.841-.967 1.668-.119.843.457 1.399 1.057 1.565C4.932 19 5.585 19 5.968 19h3.031a3 3 0 106 0h3.03c.385 0 1.04 0 1.527-.14.588-.167 1.185-.716 1.058-1.573-.122-.823-.57-1.268-.968-1.661l-.06-.06c-.4-.399-.816-.833-1.113-1.724-.226-.678-.312-1.527-.377-2.493l-.034-.547c-.049-.792-.1-1.635-.228-2.436-.157-.994-.437-1.983-1.01-2.81-.53-.765-1.291-1.364-2.367-1.714A2.5 2.5 0 0012 1.8zM10.5 4.246a1.5 1.5 0 012.998 0 .5.5 0 00.373.467c1.033.27 1.69.776 2.13 1.412.451.65.699 1.47.846 2.397.118.75.166 1.531.215 2.32l.036.574c.065.959.155 1.928.427 2.742.37 1.109.913 1.675 1.356 2.116l.013.013c.424.423.658.656.73 1.146a.36.36 0 01-.064.29.535.535 0 01-.278.176c-.339.097-.859.101-1.283.101h-12c-.425 0-.942-.004-1.28-.104l-.01-.003a.507.507 0 01-.27-.17.369.369 0 01-.066-.292c.069-.49.302-.722.73-1.147l.01-.01c.444-.44.99-1.006 1.36-2.116.272-.814.362-1.783.427-2.742l.036-.574c.049-.789.097-1.57.215-2.32.147-.927.395-1.746.846-2.397.44-.636 1.097-1.142 2.13-1.412a.5.5 0 00.373-.467zM13.999 19h-4a2 2 0 004 0z",
|
20
|
+
fill: "#fff"
|
21
|
+
}));
|
22
|
+
}
|
23
|
+
export default AlertBell24WhiteIcon;
|