@cloudtower/icons-react 0.31.13 → 0.31.14
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/IscsLun16OntintIcon.d.ts +4 -0
- package/dist/IscsiTargetDatastoreStorageObject16OntintIcon.d.ts +4 -0
- package/dist/NvmeNamespaceGroup16GradientGrayIcon.d.ts +4 -0
- package/dist/NvmeNamespaceGroup16OntintIcon.d.ts +4 -0
- package/dist/NvmeNamespaceStorageObject16GradientGrayIcon.d.ts +4 -0
- package/dist/NvmeNamespaceStorageObject16OntintIcon.d.ts +4 -0
- package/dist/NvmeSubsystemDatastoreStorageObject16GradientGrayIcon.d.ts +4 -0
- package/dist/NvmeSubsystemDatastoreStorageObject16OntintIcon.d.ts +4 -0
- package/dist/cjs/IscsLun16OntintIcon.js +23 -0
- package/dist/cjs/IscsiTargetDatastoreStorageObject16OntintIcon.js +23 -0
- package/dist/cjs/NvmeNamespaceGroup16GradientGrayIcon.js +110 -0
- package/dist/cjs/NvmeNamespaceGroup16OntintIcon.js +28 -0
- package/dist/cjs/NvmeNamespaceStorageObject16GradientGrayIcon.js +110 -0
- package/dist/cjs/NvmeNamespaceStorageObject16OntintIcon.js +28 -0
- package/dist/cjs/NvmeSubsystemDatastoreStorageObject16GradientGrayIcon.js +114 -0
- package/dist/cjs/NvmeSubsystemDatastoreStorageObject16OntintIcon.js +30 -0
- package/dist/cjs/index.js +8 -0
- package/dist/esm/IscsLun16OntintIcon.js +23 -0
- package/dist/esm/IscsiTargetDatastoreStorageObject16OntintIcon.js +23 -0
- package/dist/esm/NvmeNamespaceGroup16GradientGrayIcon.js +110 -0
- package/dist/esm/NvmeNamespaceGroup16OntintIcon.js +28 -0
- package/dist/esm/NvmeNamespaceStorageObject16GradientGrayIcon.js +110 -0
- package/dist/esm/NvmeNamespaceStorageObject16OntintIcon.js +28 -0
- package/dist/esm/NvmeSubsystemDatastoreStorageObject16GradientGrayIcon.js +114 -0
- package/dist/esm/NvmeSubsystemDatastoreStorageObject16OntintIcon.js +30 -0
- package/dist/esm/index.js +8 -0
- package/dist/image-types.d.ts +1 -1
- package/dist/index.d.ts +8 -0
- package/package.json +3 -3
@@ -0,0 +1,23 @@
|
|
1
|
+
const React = require("react");
|
2
|
+
function IscsLun16OntintIcon({
|
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": "IscsLun16OntintIcon",
|
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.34 3.634a.5.5 0 11-.706.707L8.778 2.485a8.498 8.498 0 00-.444-.427.57.57 0 00-.18-.12.5.5 0 00-.309 0 .57.57 0 00-.179.12c-.108.092-.24.223-.444.427L4.556 5.151a8.506 8.506 0 00-.427.444.57.57 0 00-.12.18.5.5 0 000 .309.57.57 0 00.12.179c.092.108.223.24.427.444l2.666 2.666c.204.204.336.335.444.427a.57.57 0 00.18.12.5.5 0 00.308 0 .57.57 0 00.18-.12 8.5 8.5 0 00.444-.427l1.856-1.856a.5.5 0 11.707.707l-1.87 1.87c-.186.186-.347.347-.49.469a1.526 1.526 0 01-.518.307 1.5 1.5 0 01-.927 0 1.526 1.526 0 01-.517-.307c-.143-.122-.304-.283-.49-.47L3.835 7.4c-.186-.186-.347-.347-.469-.49a1.527 1.527 0 01-.307-.517 1.5 1.5 0 010-.927c.065-.202.179-.367.307-.518.122-.143.283-.304.47-.49l2.693-2.694c.186-.186.347-.347.49-.468.151-.129.315-.243.517-.308a1.5 1.5 0 01.927 0c.202.065.367.18.518.308.143.121.304.282.49.468l1.87 1.87zM8.5 6a.5.5 0 01.5-.5h4.5a.5.5 0 010 1H9a.5.5 0 01-.5-.5zm-5.216 9h2.31v-.748H4.212v-2.67h-.928V15zm4.907-3.418v2.11a.528.528 0 01-.547.547.528.528 0 01-.547-.548v-2.11h-.928v2.19c0 .782.59 1.269 1.475 1.269.878 0 1.475-.487 1.475-1.268v-2.19h-.928zm3.6 0h.927V15h-.774l-1.236-1.796h-.02V15h-.927v-3.418h.787l1.215 1.789h.027v-1.79z",
|
20
|
+
fill: "#fff"
|
21
|
+
}));
|
22
|
+
}
|
23
|
+
module.exports = IscsLun16OntintIcon;
|
@@ -0,0 +1,23 @@
|
|
1
|
+
const React = require("react");
|
2
|
+
function IscsiTargetDatastoreStorageObject16OntintIcon({
|
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": "IscsiTargetDatastoreStorageObject16OntintIcon",
|
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: "M9.471 1.764l1.87 1.87a.5.5 0 11-.707.707L8.778 2.485a8.502 8.502 0 00-.444-.427.57.57 0 00-.18-.12.5.5 0 00-.309 0 .57.57 0 00-.179.12c-.108.092-.24.223-.444.427L4.556 5.15a8.498 8.498 0 00-.427.444.57.57 0 00-.12.18.5.5 0 000 .308.57.57 0 00.12.18c.092.108.223.24.427.444l2.666 2.666c.204.204.336.335.444.427a.57.57 0 00.18.12.5.5 0 00.308 0 .57.57 0 00.18-.12c.108-.092.24-.223.444-.427l1.856-1.856a.5.5 0 11.707.707l-1.87 1.87a8.941 8.941 0 01-.49.469 1.526 1.526 0 01-.518.307 1.5 1.5 0 01-.927 0 1.526 1.526 0 01-.517-.307 8.941 8.941 0 01-.49-.47L3.835 7.4c-.186-.186-.347-.347-.469-.49a1.527 1.527 0 01-.307-.518 1.5 1.5 0 010-.927c.065-.202.179-.366.307-.517.122-.143.283-.304.47-.49l2.693-2.694c.186-.186.347-.347.49-.469.151-.128.315-.242.517-.307a1.5 1.5 0 01.927 0c.202.065.367.179.518.307.143.122.304.283.49.47zM8.5 6a.5.5 0 01.5-.5h4.5a.5.5 0 010 1H9a.5.5 0 01-.5-.5zM3.645 9.42l.072-.017.853.853c-.25.042-.484.088-.7.138-.523.121-.912.258-1.158.393-.072.039-.123.073-.16.102.037.028.088.063.16.102.246.134.635.271 1.158.393 1.04.24 2.5.394 4.13.394s3.09-.154 4.13-.394c.523-.122.912-.259 1.158-.393.072-.04.123-.074.16-.102a1.158 1.158 0 00-.16-.102c-.246-.135-.635-.272-1.158-.393a11.58 11.58 0 00-.7-.138l.853-.853.072.017c.563.13 1.052.292 1.413.49.18.098.353.218.485.368a.92.92 0 01.247.61v2.223a.92.92 0 01-.247.611c-.132.15-.304.27-.485.368-.36.198-.85.36-1.413.49-1.132.262-2.672.42-4.355.42-1.683 0-3.223-.158-4.355-.42-.563-.13-1.052-.292-1.414-.49a1.784 1.784 0 01-.484-.368.92.92 0 01-.247-.611v-2.222c0-.252.113-.459.247-.611.132-.15.304-.27.484-.368.362-.198.851-.36 1.414-.49zM2.5 11.999v1.065c.03.032.093.084.212.149.246.135.635.272 1.158.393 1.04.24 2.5.394 4.13.394s3.09-.153 4.13-.394c.523-.121.912-.258 1.158-.393a.855.855 0 00.212-.15V12c-.321.14-.711.259-1.145.359-1.132.262-2.672.42-4.355.42-1.683 0-3.223-.158-4.355-.42-.434-.1-.824-.22-1.145-.36z",
|
20
|
+
fill: "#fff"
|
21
|
+
}));
|
22
|
+
}
|
23
|
+
module.exports = IscsiTargetDatastoreStorageObject16OntintIcon;
|
@@ -0,0 +1,110 @@
|
|
1
|
+
const React = require("react");
|
2
|
+
function NvmeNamespaceGroup16GradientGrayIcon({
|
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": "NvmeNamespaceGroup16GradientGrayIcon",
|
13
|
+
"aria-labelledby": titleId
|
14
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
15
|
+
id: titleId
|
16
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
17
|
+
d: "M12.732 5h-6.5c-.083 0-.164.007-.243.02A2 2 0 017.732 4h5a2 2 0 012 2v1a2 2 0 01-1.02 1.744c.014-.08.02-.161.02-.244V6a1 1 0 00-1-1z",
|
18
|
+
fill: "url(#paint0_radial_NvmeNamespaceGroup16GradientGrayIcon_4056_3252)"
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
20
|
+
d: "M11 7a1 1 0 011 1v2.5c0 .083-.007.164-.02.244A2 2 0 0013 9V8a2 2 0 00-2-2H6a2 2 0 00-1.744 1.02c.08-.013.161-.02.244-.02H11z",
|
21
|
+
fill: "url(#paint1_radial_NvmeNamespaceGroup16GradientGrayIcon_4056_3252)"
|
22
|
+
}), /*#__PURE__*/React.createElement("path", {
|
23
|
+
d: "M9 10H8v1h1v-1z",
|
24
|
+
fill: "url(#paint2_radial_NvmeNamespaceGroup16GradientGrayIcon_4056_3252)"
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
26
|
+
d: "M6 10h1v1H6v-1z",
|
27
|
+
fill: "url(#paint3_radial_NvmeNamespaceGroup16GradientGrayIcon_4056_3252)"
|
28
|
+
}), /*#__PURE__*/React.createElement("path", {
|
29
|
+
d: "M5 10H4v1h1v-1z",
|
30
|
+
fill: "url(#paint4_radial_NvmeNamespaceGroup16GradientGrayIcon_4056_3252)"
|
31
|
+
}), /*#__PURE__*/React.createElement("path", {
|
32
|
+
fillRule: "evenodd",
|
33
|
+
clipRule: "evenodd",
|
34
|
+
d: "M2 10a2 2 0 012-2h5a2 2 0 012 2v1a2 2 0 01-2 2H4a2 2 0 01-2-2v-1zm2-1h5a1 1 0 011 1v1a1 1 0 01-1 1H4a1 1 0 01-1-1v-1a1 1 0 011-1z",
|
35
|
+
fill: "url(#paint5_radial_NvmeNamespaceGroup16GradientGrayIcon_4056_3252)"
|
36
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
37
|
+
id: "paint0_radial_NvmeNamespaceGroup16GradientGrayIcon_4056_3252",
|
38
|
+
cx: 0,
|
39
|
+
cy: 0,
|
40
|
+
r: 1,
|
41
|
+
gradientUnits: "userSpaceOnUse",
|
42
|
+
gradientTransform: "matrix(12.7324 -8.99997 8.48429 12.00286 2 13)"
|
43
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
44
|
+
stopColor: "#CCD4E3"
|
45
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
46
|
+
offset: 1,
|
47
|
+
stopColor: "#6B7D99"
|
48
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
49
|
+
id: "paint1_radial_NvmeNamespaceGroup16GradientGrayIcon_4056_3252",
|
50
|
+
cx: 0,
|
51
|
+
cy: 0,
|
52
|
+
r: 1,
|
53
|
+
gradientUnits: "userSpaceOnUse",
|
54
|
+
gradientTransform: "matrix(12.7324 -8.99997 8.48429 12.00286 2 13)"
|
55
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
56
|
+
stopColor: "#CCD4E3"
|
57
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
58
|
+
offset: 1,
|
59
|
+
stopColor: "#6B7D99"
|
60
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
61
|
+
id: "paint2_radial_NvmeNamespaceGroup16GradientGrayIcon_4056_3252",
|
62
|
+
cx: 0,
|
63
|
+
cy: 0,
|
64
|
+
r: 1,
|
65
|
+
gradientUnits: "userSpaceOnUse",
|
66
|
+
gradientTransform: "matrix(12.7324 -8.99997 8.48429 12.00286 2 13)"
|
67
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
68
|
+
stopColor: "#CCD4E3"
|
69
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
70
|
+
offset: 1,
|
71
|
+
stopColor: "#6B7D99"
|
72
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
73
|
+
id: "paint3_radial_NvmeNamespaceGroup16GradientGrayIcon_4056_3252",
|
74
|
+
cx: 0,
|
75
|
+
cy: 0,
|
76
|
+
r: 1,
|
77
|
+
gradientUnits: "userSpaceOnUse",
|
78
|
+
gradientTransform: "matrix(12.7324 -8.99997 8.48429 12.00286 2 13)"
|
79
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
80
|
+
stopColor: "#CCD4E3"
|
81
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
82
|
+
offset: 1,
|
83
|
+
stopColor: "#6B7D99"
|
84
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
85
|
+
id: "paint4_radial_NvmeNamespaceGroup16GradientGrayIcon_4056_3252",
|
86
|
+
cx: 0,
|
87
|
+
cy: 0,
|
88
|
+
r: 1,
|
89
|
+
gradientUnits: "userSpaceOnUse",
|
90
|
+
gradientTransform: "matrix(12.7324 -8.99997 8.48429 12.00286 2 13)"
|
91
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
92
|
+
stopColor: "#CCD4E3"
|
93
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
94
|
+
offset: 1,
|
95
|
+
stopColor: "#6B7D99"
|
96
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
97
|
+
id: "paint5_radial_NvmeNamespaceGroup16GradientGrayIcon_4056_3252",
|
98
|
+
cx: 0,
|
99
|
+
cy: 0,
|
100
|
+
r: 1,
|
101
|
+
gradientUnits: "userSpaceOnUse",
|
102
|
+
gradientTransform: "matrix(12.7324 -8.99997 8.48429 12.00286 2 13)"
|
103
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
104
|
+
stopColor: "#CCD4E3"
|
105
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
106
|
+
offset: 1,
|
107
|
+
stopColor: "#6B7D99"
|
108
|
+
}))));
|
109
|
+
}
|
110
|
+
module.exports = NvmeNamespaceGroup16GradientGrayIcon;
|
@@ -0,0 +1,28 @@
|
|
1
|
+
const React = require("react");
|
2
|
+
function NvmeNamespaceGroup16OntintIcon({
|
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": "NvmeNamespaceGroup16OntintIcon",
|
13
|
+
"aria-labelledby": titleId
|
14
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
15
|
+
id: titleId
|
16
|
+
}, title) : null, /*#__PURE__*/React.createElement("g", {
|
17
|
+
fill: "#fff"
|
18
|
+
}, /*#__PURE__*/React.createElement("path", {
|
19
|
+
d: "M12.732 5h-6.5c-.083 0-.164.007-.243.02A2 2 0 017.732 4h5a2 2 0 012 2v1a2 2 0 01-1.02 1.744c.014-.08.02-.161.02-.244V6a1 1 0 00-1-1z"
|
20
|
+
}), /*#__PURE__*/React.createElement("path", {
|
21
|
+
d: "M11 7a1 1 0 011 1v2.5c0 .083-.007.164-.02.244A2 2 0 0013 9V8a2 2 0 00-2-2H6a2 2 0 00-1.744 1.02c.08-.013.161-.02.244-.02H11zM9 10H8v1h1v-1zM6 10h1v1H6v-1zM5 10H4v1h1v-1z"
|
22
|
+
}), /*#__PURE__*/React.createElement("path", {
|
23
|
+
fillRule: "evenodd",
|
24
|
+
clipRule: "evenodd",
|
25
|
+
d: "M2 10a2 2 0 012-2h5a2 2 0 012 2v1a2 2 0 01-2 2H4a2 2 0 01-2-2v-1zm2-1h5a1 1 0 011 1v1a1 1 0 01-1 1H4a1 1 0 01-1-1v-1a1 1 0 011-1z"
|
26
|
+
})));
|
27
|
+
}
|
28
|
+
module.exports = NvmeNamespaceGroup16OntintIcon;
|
@@ -0,0 +1,110 @@
|
|
1
|
+
const React = require("react");
|
2
|
+
function NvmeNamespaceStorageObject16GradientGrayIcon({
|
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": "NvmeNamespaceStorageObject16GradientGrayIcon",
|
13
|
+
"aria-labelledby": titleId
|
14
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
15
|
+
id: titleId
|
16
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
17
|
+
d: "M12 5v2h-2V5h2z",
|
18
|
+
fill: "url(#paint0_radial_NvmeNamespaceStorageObject16GradientGrayIcon_4056_8134)"
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
20
|
+
d: "M9 7V5H7v2h2z",
|
21
|
+
fill: "url(#paint1_radial_NvmeNamespaceStorageObject16GradientGrayIcon_4056_8134)"
|
22
|
+
}), /*#__PURE__*/React.createElement("path", {
|
23
|
+
d: "M6 5v2H4V5h2z",
|
24
|
+
fill: "url(#paint2_radial_NvmeNamespaceStorageObject16GradientGrayIcon_4056_8134)"
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
26
|
+
fillRule: "evenodd",
|
27
|
+
clipRule: "evenodd",
|
28
|
+
d: "M14 5a2 2 0 00-2-2H4a2 2 0 00-2 2v2a2 2 0 002 2h8a2 2 0 002-2V5zm-1 2V5a1 1 0 00-1-1H4a1 1 0 00-1 1v2a1 1 0 001 1h8a1 1 0 001-1z",
|
29
|
+
fill: "url(#paint3_radial_NvmeNamespaceStorageObject16GradientGrayIcon_4056_8134)"
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
31
|
+
d: "M10.959 10.88h-.613c-.023-.23-.21-.364-.516-.364-.313 0-.486.138-.486.326-.004.21.216.304.478.362l.272.063c.525.114.905.372.906.858-.002.534-.435.875-1.173.875-.734 0-1.201-.326-1.218-.958h.619c.02.292.26.44.591.44.325 0 .535-.145.536-.358-.001-.197-.184-.288-.513-.365l-.33-.08c-.51-.118-.824-.365-.823-.795-.003-.53.483-.884 1.145-.884.673 0 1.116.36 1.125.88z",
|
32
|
+
fill: "url(#paint4_radial_NvmeNamespaceStorageObject16GradientGrayIcon_4056_8134)"
|
33
|
+
}), /*#__PURE__*/React.createElement("path", {
|
34
|
+
d: "M6.892 10.04h.636v2.919h-.552L5.66 11.122H5.64v1.837H5v-2.92h.56l1.305 1.837h.027V10.04z",
|
35
|
+
fill: "url(#paint5_radial_NvmeNamespaceStorageObject16GradientGrayIcon_4056_8134)"
|
36
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
37
|
+
id: "paint0_radial_NvmeNamespaceStorageObject16GradientGrayIcon_4056_8134",
|
38
|
+
cx: 0,
|
39
|
+
cy: 0,
|
40
|
+
r: 1,
|
41
|
+
gradientUnits: "userSpaceOnUse",
|
42
|
+
gradientTransform: "matrix(12 -10 9.83606 11.80325 2 13)"
|
43
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
44
|
+
stopColor: "#CCD4E3"
|
45
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
46
|
+
offset: 1,
|
47
|
+
stopColor: "#6B7D99"
|
48
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
49
|
+
id: "paint1_radial_NvmeNamespaceStorageObject16GradientGrayIcon_4056_8134",
|
50
|
+
cx: 0,
|
51
|
+
cy: 0,
|
52
|
+
r: 1,
|
53
|
+
gradientUnits: "userSpaceOnUse",
|
54
|
+
gradientTransform: "matrix(12 -10 9.83606 11.80325 2 13)"
|
55
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
56
|
+
stopColor: "#CCD4E3"
|
57
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
58
|
+
offset: 1,
|
59
|
+
stopColor: "#6B7D99"
|
60
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
61
|
+
id: "paint2_radial_NvmeNamespaceStorageObject16GradientGrayIcon_4056_8134",
|
62
|
+
cx: 0,
|
63
|
+
cy: 0,
|
64
|
+
r: 1,
|
65
|
+
gradientUnits: "userSpaceOnUse",
|
66
|
+
gradientTransform: "matrix(12 -10 9.83606 11.80325 2 13)"
|
67
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
68
|
+
stopColor: "#CCD4E3"
|
69
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
70
|
+
offset: 1,
|
71
|
+
stopColor: "#6B7D99"
|
72
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
73
|
+
id: "paint3_radial_NvmeNamespaceStorageObject16GradientGrayIcon_4056_8134",
|
74
|
+
cx: 0,
|
75
|
+
cy: 0,
|
76
|
+
r: 1,
|
77
|
+
gradientUnits: "userSpaceOnUse",
|
78
|
+
gradientTransform: "matrix(12 -10 9.83606 11.80325 2 13)"
|
79
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
80
|
+
stopColor: "#CCD4E3"
|
81
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
82
|
+
offset: 1,
|
83
|
+
stopColor: "#6B7D99"
|
84
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
85
|
+
id: "paint4_radial_NvmeNamespaceStorageObject16GradientGrayIcon_4056_8134",
|
86
|
+
cx: 0,
|
87
|
+
cy: 0,
|
88
|
+
r: 1,
|
89
|
+
gradientUnits: "userSpaceOnUse",
|
90
|
+
gradientTransform: "matrix(12 -10 9.83606 11.80325 2 13)"
|
91
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
92
|
+
stopColor: "#CCD4E3"
|
93
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
94
|
+
offset: 1,
|
95
|
+
stopColor: "#6B7D99"
|
96
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
97
|
+
id: "paint5_radial_NvmeNamespaceStorageObject16GradientGrayIcon_4056_8134",
|
98
|
+
cx: 0,
|
99
|
+
cy: 0,
|
100
|
+
r: 1,
|
101
|
+
gradientUnits: "userSpaceOnUse",
|
102
|
+
gradientTransform: "matrix(12 -10 9.83606 11.80325 2 13)"
|
103
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
104
|
+
stopColor: "#CCD4E3"
|
105
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
106
|
+
offset: 1,
|
107
|
+
stopColor: "#6B7D99"
|
108
|
+
}))));
|
109
|
+
}
|
110
|
+
module.exports = NvmeNamespaceStorageObject16GradientGrayIcon;
|
@@ -0,0 +1,28 @@
|
|
1
|
+
const React = require("react");
|
2
|
+
function NvmeNamespaceStorageObject16OntintIcon({
|
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": "NvmeNamespaceStorageObject16OntintIcon",
|
13
|
+
"aria-labelledby": titleId
|
14
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
15
|
+
id: titleId
|
16
|
+
}, title) : null, /*#__PURE__*/React.createElement("g", {
|
17
|
+
fill: "#fff"
|
18
|
+
}, /*#__PURE__*/React.createElement("path", {
|
19
|
+
d: "M12 5v2h-2V5h2zM9 7V5H7v2h2zM6 5v2H4V5h2z"
|
20
|
+
}), /*#__PURE__*/React.createElement("path", {
|
21
|
+
fillRule: "evenodd",
|
22
|
+
clipRule: "evenodd",
|
23
|
+
d: "M14 5a2 2 0 00-2-2H4a2 2 0 00-2 2v2a2 2 0 002 2h8a2 2 0 002-2V5zm-1 2V5a1 1 0 00-1-1H4a1 1 0 00-1 1v2a1 1 0 001 1h8a1 1 0 001-1z"
|
24
|
+
}), /*#__PURE__*/React.createElement("path", {
|
25
|
+
d: "M10.959 10.88h-.613c-.023-.23-.21-.364-.516-.364-.313 0-.486.138-.486.326-.004.21.216.304.478.362l.272.063c.525.114.905.372.906.858-.002.534-.435.875-1.173.875-.734 0-1.201-.326-1.218-.958h.619c.02.292.26.44.591.44.325 0 .535-.145.536-.358-.001-.197-.184-.288-.513-.365l-.33-.08c-.51-.118-.824-.365-.823-.795-.003-.53.483-.884 1.145-.884.673 0 1.116.36 1.125.88zM6.892 10.04h.636v2.919h-.552L5.66 11.122H5.64v1.837H5v-2.92h.56l1.305 1.837h.027V10.04z"
|
26
|
+
})));
|
27
|
+
}
|
28
|
+
module.exports = NvmeNamespaceStorageObject16OntintIcon;
|
@@ -0,0 +1,114 @@
|
|
1
|
+
const React = require("react");
|
2
|
+
function NvmeSubsystemDatastoreStorageObject16GradientGrayIcon({
|
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": "NvmeSubsystemDatastoreStorageObject16GradientGrayIcon",
|
13
|
+
"aria-labelledby": titleId
|
14
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
15
|
+
id: titleId
|
16
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
17
|
+
d: "M4.021 3h.612v2.91h-.531L2.836 4.077h-.021V5.91H2.2V3h.54l1.255 1.83h.026V3z",
|
18
|
+
fill: "url(#paint0_radial_NvmeSubsystemDatastoreStorageObject16GradientGrayIcon_4056_3229)"
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
20
|
+
d: "M4.984 3h.683l.703 2.21h.027L7.102 3h.681L6.781 5.91h-.793L4.984 3z",
|
21
|
+
fill: "url(#paint1_radial_NvmeSubsystemDatastoreStorageObject16GradientGrayIcon_4056_3229)"
|
22
|
+
}), /*#__PURE__*/React.createElement("path", {
|
23
|
+
d: "M8.134 3v2.91h.596V4.008h.024l.753 1.886h.406l.753-1.88h.024V5.91h.597V3h-.759l-.8 1.955h-.035L8.893 3h-.76z",
|
24
|
+
fill: "url(#paint2_radial_NvmeSubsystemDatastoreStorageObject16GradientGrayIcon_4056_3229)"
|
25
|
+
}), /*#__PURE__*/React.createElement("path", {
|
26
|
+
fillRule: "evenodd",
|
27
|
+
clipRule: "evenodd",
|
28
|
+
d: "M13.765 5.284c-.085.405-.449.668-.988.668-.672 0-1.083-.432-1.083-1.124 0-.673.416-1.13 1.059-1.13.576 0 1.025.367 1.025 1.109v.166h-1.486v.001c0 .326.192.526.495.526.201 0 .358-.087.419-.253l.56.037zm-1.003-1.133a.46.46 0 00-.47.447h.917a.43.43 0 00-.447-.447z",
|
29
|
+
fill: "url(#paint3_radial_NvmeSubsystemDatastoreStorageObject16GradientGrayIcon_4056_3229)"
|
30
|
+
}), /*#__PURE__*/React.createElement("path", {
|
31
|
+
fillRule: "evenodd",
|
32
|
+
clipRule: "evenodd",
|
33
|
+
d: "M0 2a1 1 0 011-1h14a1 1 0 011 1v5a1 1 0 01-1 1H1a1 1 0 01-1-1V2zm1 0h14v5H1V2z",
|
34
|
+
fill: "url(#paint4_radial_NvmeSubsystemDatastoreStorageObject16GradientGrayIcon_4056_3229)"
|
35
|
+
}), /*#__PURE__*/React.createElement("path", {
|
36
|
+
fillRule: "evenodd",
|
37
|
+
clipRule: "evenodd",
|
38
|
+
d: "M14.5 13.111V10.89a.921.921 0 00-.247-.611 1.786 1.786 0 00-.485-.368c-.36-.198-.85-.36-1.413-.49C11.223 9.158 9.683 9 8 9c-1.683 0-3.223.158-4.355.42-.563.13-1.052.292-1.414.49-.18.098-.352.219-.484.368a.921.921 0 00-.247.61v2.223c0 .252.113.459.247.611.132.15.304.27.484.368.362.198.851.36 1.414.49C4.777 14.842 6.317 15 8 15c1.683 0 3.223-.158 4.355-.42.563-.13 1.052-.292 1.413-.49.18-.098.353-.219.485-.368a.921.921 0 00.247-.61zm-12-.047v-1.065c.321.14.711.259 1.145.36 1.132.261 2.672.419 4.355.419 1.683 0 3.223-.158 4.355-.42.434-.1.824-.22 1.145-.36v1.066a.852.852 0 01-.212.15c-.246.134-.635.27-1.158.392-1.04.24-2.5.394-4.13.394s-3.09-.153-4.13-.394c-.523-.121-.912-.258-1.158-.393a.853.853 0 01-.212-.15zm10.788-2.277c.072.039.123.073.16.102a1.16 1.16 0 01-.16.102c-.246.135-.635.272-1.158.393-1.04.24-2.5.394-4.13.394s-3.09-.154-4.13-.394c-.523-.121-.912-.258-1.158-.393a1.164 1.164 0 01-.16-.102c.037-.028.088-.063.16-.102.246-.135.635-.272 1.158-.393C4.91 10.154 6.37 10 8 10s3.09.153 4.13.394c.523.121.912.258 1.158.393z",
|
39
|
+
fill: "url(#paint5_radial_NvmeSubsystemDatastoreStorageObject16GradientGrayIcon_4056_3229)"
|
40
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
41
|
+
id: "paint0_radial_NvmeSubsystemDatastoreStorageObject16GradientGrayIcon_4056_3229",
|
42
|
+
cx: 0,
|
43
|
+
cy: 0,
|
44
|
+
r: 1,
|
45
|
+
gradientUnits: "userSpaceOnUse",
|
46
|
+
gradientTransform: "matrix(16.00001 -14 13.87607 15.85838 0 15)"
|
47
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
48
|
+
stopColor: "#CCD4E3"
|
49
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
50
|
+
offset: 1,
|
51
|
+
stopColor: "#6B7D99"
|
52
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
53
|
+
id: "paint1_radial_NvmeSubsystemDatastoreStorageObject16GradientGrayIcon_4056_3229",
|
54
|
+
cx: 0,
|
55
|
+
cy: 0,
|
56
|
+
r: 1,
|
57
|
+
gradientUnits: "userSpaceOnUse",
|
58
|
+
gradientTransform: "matrix(16.00001 -14 13.87607 15.85838 0 15)"
|
59
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
60
|
+
stopColor: "#CCD4E3"
|
61
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
62
|
+
offset: 1,
|
63
|
+
stopColor: "#6B7D99"
|
64
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
65
|
+
id: "paint2_radial_NvmeSubsystemDatastoreStorageObject16GradientGrayIcon_4056_3229",
|
66
|
+
cx: 0,
|
67
|
+
cy: 0,
|
68
|
+
r: 1,
|
69
|
+
gradientUnits: "userSpaceOnUse",
|
70
|
+
gradientTransform: "matrix(16.00001 -14 13.87607 15.85838 0 15)"
|
71
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
72
|
+
stopColor: "#CCD4E3"
|
73
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
74
|
+
offset: 1,
|
75
|
+
stopColor: "#6B7D99"
|
76
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
77
|
+
id: "paint3_radial_NvmeSubsystemDatastoreStorageObject16GradientGrayIcon_4056_3229",
|
78
|
+
cx: 0,
|
79
|
+
cy: 0,
|
80
|
+
r: 1,
|
81
|
+
gradientUnits: "userSpaceOnUse",
|
82
|
+
gradientTransform: "matrix(16.00001 -14 13.87607 15.85838 0 15)"
|
83
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
84
|
+
stopColor: "#CCD4E3"
|
85
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
86
|
+
offset: 1,
|
87
|
+
stopColor: "#6B7D99"
|
88
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
89
|
+
id: "paint4_radial_NvmeSubsystemDatastoreStorageObject16GradientGrayIcon_4056_3229",
|
90
|
+
cx: 0,
|
91
|
+
cy: 0,
|
92
|
+
r: 1,
|
93
|
+
gradientUnits: "userSpaceOnUse",
|
94
|
+
gradientTransform: "matrix(16.00001 -14 13.87607 15.85838 0 15)"
|
95
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
96
|
+
stopColor: "#CCD4E3"
|
97
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
98
|
+
offset: 1,
|
99
|
+
stopColor: "#6B7D99"
|
100
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
101
|
+
id: "paint5_radial_NvmeSubsystemDatastoreStorageObject16GradientGrayIcon_4056_3229",
|
102
|
+
cx: 0,
|
103
|
+
cy: 0,
|
104
|
+
r: 1,
|
105
|
+
gradientUnits: "userSpaceOnUse",
|
106
|
+
gradientTransform: "matrix(16.00001 -14 13.87607 15.85838 0 15)"
|
107
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
108
|
+
stopColor: "#CCD4E3"
|
109
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
110
|
+
offset: 1,
|
111
|
+
stopColor: "#6B7D99"
|
112
|
+
}))));
|
113
|
+
}
|
114
|
+
module.exports = NvmeSubsystemDatastoreStorageObject16GradientGrayIcon;
|
@@ -0,0 +1,30 @@
|
|
1
|
+
const React = require("react");
|
2
|
+
function NvmeSubsystemDatastoreStorageObject16OntintIcon({
|
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": "NvmeSubsystemDatastoreStorageObject16OntintIcon",
|
13
|
+
"aria-labelledby": titleId
|
14
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
15
|
+
id: titleId
|
16
|
+
}, title) : null, /*#__PURE__*/React.createElement("g", {
|
17
|
+
fill: "#fff"
|
18
|
+
}, /*#__PURE__*/React.createElement("path", {
|
19
|
+
d: "M4.021 3h.612v2.91h-.531L2.836 4.077h-.021V5.91H2.2V3h.54l1.255 1.83h.026V3zM4.984 3h.683l.703 2.21h.027L7.102 3h.681L6.781 5.91h-.793L4.984 3zM8.134 3v2.91h.596V4.008h.024l.753 1.886h.406l.753-1.88h.024V5.91h.597V3h-.759l-.8 1.955h-.035L8.893 3h-.76z"
|
20
|
+
}), /*#__PURE__*/React.createElement("path", {
|
21
|
+
fillRule: "evenodd",
|
22
|
+
clipRule: "evenodd",
|
23
|
+
d: "M13.765 5.284c-.085.405-.449.668-.988.668-.672 0-1.083-.432-1.083-1.124 0-.673.416-1.13 1.059-1.13.576 0 1.025.367 1.025 1.109v.166h-1.486v.001c0 .326.192.526.495.526.201 0 .358-.087.419-.253l.56.037zm-1.003-1.133a.46.46 0 00-.47.447h.917a.43.43 0 00-.447-.447z"
|
24
|
+
}), /*#__PURE__*/React.createElement("path", {
|
25
|
+
fillRule: "evenodd",
|
26
|
+
clipRule: "evenodd",
|
27
|
+
d: "M0 2a1 1 0 011-1h14a1 1 0 011 1v5a1 1 0 01-1 1H1a1 1 0 01-1-1V2zm1 0h14v5H1V2zM14.5 13.111V10.89a.921.921 0 00-.247-.611 1.786 1.786 0 00-.485-.368c-.36-.198-.85-.36-1.413-.49C11.223 9.158 9.683 9 8 9c-1.683 0-3.223.158-4.355.42-.563.13-1.052.292-1.414.49-.18.098-.352.219-.484.368a.921.921 0 00-.247.61v2.223c0 .252.113.459.247.611.132.15.304.27.484.368.362.198.851.36 1.414.49C4.777 14.842 6.317 15 8 15c1.683 0 3.223-.158 4.355-.42.563-.13 1.052-.292 1.413-.49.18-.098.353-.219.485-.368a.921.921 0 00.247-.61zm-12-.047v-1.065c.321.14.711.259 1.145.36 1.132.261 2.672.419 4.355.419 1.683 0 3.223-.158 4.355-.42.434-.1.824-.22 1.145-.36v1.066a.852.852 0 01-.212.15c-.246.134-.635.27-1.158.392-1.04.24-2.5.394-4.13.394s-3.09-.153-4.13-.394c-.523-.121-.912-.258-1.158-.393a.853.853 0 01-.212-.15zm10.788-2.277c.072.039.123.073.16.102a1.16 1.16 0 01-.16.102c-.246.135-.635.272-1.158.393-1.04.24-2.5.394-4.13.394s-3.09-.154-4.13-.394c-.523-.121-.912-.258-1.158-.393a1.164 1.164 0 01-.16-.102c.037-.028.088-.063.16-.102.246-.135.635-.272 1.158-.393C4.91 10.154 6.37 10 8 10s3.09.153 4.13.394c.523.121.912.258 1.158.393z"
|
28
|
+
})));
|
29
|
+
}
|
30
|
+
module.exports = NvmeSubsystemDatastoreStorageObject16OntintIcon;
|
package/dist/cjs/index.js
CHANGED
@@ -532,6 +532,7 @@ module.exports.Ip24RedIcon = require("./Ip24RedIcon.js")
|
|
532
532
|
module.exports.Ip24Icon = require("./Ip24Icon.js")
|
533
533
|
module.exports.IpPool24Icon = require("./IpPool24Icon.js")
|
534
534
|
module.exports.IpPoolWhite24Icon = require("./IpPoolWhite24Icon.js")
|
535
|
+
module.exports.IscsLun16OntintIcon = require("./IscsLun16OntintIcon.js")
|
535
536
|
module.exports.IscsiDatastoreStorageObject16GradientBlueIcon = require("./IscsiDatastoreStorageObject16GradientBlueIcon.js")
|
536
537
|
module.exports.IscsiDatastoreStorageObject24GradientBlueIcon = require("./IscsiDatastoreStorageObject24GradientBlueIcon.js")
|
537
538
|
module.exports.IscsiDatastoreStorageObject24GradientGrayIcon = require("./IscsiDatastoreStorageObject24GradientGrayIcon.js")
|
@@ -547,6 +548,7 @@ module.exports.IscsiTarget24BlueIcon = require("./IscsiTarget24BlueIcon.js")
|
|
547
548
|
module.exports.IscsiTarget24Icon = require("./IscsiTarget24Icon.js")
|
548
549
|
module.exports.IscsiTargetDatastoreStorageObject16GradientBlueIcon = require("./IscsiTargetDatastoreStorageObject16GradientBlueIcon.js")
|
549
550
|
module.exports.IscsiTargetDatastoreStorageObject16GradientGrayIcon = require("./IscsiTargetDatastoreStorageObject16GradientGrayIcon.js")
|
551
|
+
module.exports.IscsiTargetDatastoreStorageObject16OntintIcon = require("./IscsiTargetDatastoreStorageObject16OntintIcon.js")
|
550
552
|
module.exports.IscsiTargetDatastoreStorageObject24GradientBlueIcon = require("./IscsiTargetDatastoreStorageObject24GradientBlueIcon.js")
|
551
553
|
module.exports.IscsiTargetDatastoreStorageObject24GradientGrayIcon = require("./IscsiTargetDatastoreStorageObject24GradientGrayIcon.js")
|
552
554
|
module.exports.Iso24BlueIcon = require("./Iso24BlueIcon.js")
|
@@ -798,12 +800,18 @@ module.exports.NoticeTriangleFill16BoldOntintIcon = require("./NoticeTriangleFil
|
|
798
800
|
module.exports.NoticeTriangleFill16BoldYellowIcon = require("./NoticeTriangleFill16BoldYellowIcon.js")
|
799
801
|
module.exports.NoticeTriangleFill16OntintIcon = require("./NoticeTriangleFill16OntintIcon.js")
|
800
802
|
module.exports.NoticeTriangleFill16YellowIcon = require("./NoticeTriangleFill16YellowIcon.js")
|
803
|
+
module.exports.NvmeNamespaceGroup16GradientGrayIcon = require("./NvmeNamespaceGroup16GradientGrayIcon.js")
|
804
|
+
module.exports.NvmeNamespaceGroup16OntintIcon = require("./NvmeNamespaceGroup16OntintIcon.js")
|
801
805
|
module.exports.NvmeNamespaceGroup24BlueIcon = require("./NvmeNamespaceGroup24BlueIcon.js")
|
802
806
|
module.exports.NvmeNamespaceGroup24GrayIcon = require("./NvmeNamespaceGroup24GrayIcon.js")
|
803
807
|
module.exports.NvmeNamespaceStorageObject16GradientBlueIcon = require("./NvmeNamespaceStorageObject16GradientBlueIcon.js")
|
808
|
+
module.exports.NvmeNamespaceStorageObject16GradientGrayIcon = require("./NvmeNamespaceStorageObject16GradientGrayIcon.js")
|
809
|
+
module.exports.NvmeNamespaceStorageObject16OntintIcon = require("./NvmeNamespaceStorageObject16OntintIcon.js")
|
804
810
|
module.exports.NvmeNamespaceStorageObject24BlueIcon = require("./NvmeNamespaceStorageObject24BlueIcon.js")
|
805
811
|
module.exports.NvmeNamespaceStorageObject24GrayIcon = require("./NvmeNamespaceStorageObject24GrayIcon.js")
|
806
812
|
module.exports.NvmeSubsystemDatastoreStorageObject16GradientBlueIcon = require("./NvmeSubsystemDatastoreStorageObject16GradientBlueIcon.js")
|
813
|
+
module.exports.NvmeSubsystemDatastoreStorageObject16GradientGrayIcon = require("./NvmeSubsystemDatastoreStorageObject16GradientGrayIcon.js")
|
814
|
+
module.exports.NvmeSubsystemDatastoreStorageObject16OntintIcon = require("./NvmeSubsystemDatastoreStorageObject16OntintIcon.js")
|
807
815
|
module.exports.NvmeSubsystemDatastoreStorageObject24BlueIcon = require("./NvmeSubsystemDatastoreStorageObject24BlueIcon.js")
|
808
816
|
module.exports.NvmeSubsystemDatastoreStorageObject24GrayIcon = require("./NvmeSubsystemDatastoreStorageObject24GrayIcon.js")
|
809
817
|
module.exports.ObservabilityService16GradientBlueIcon = require("./ObservabilityService16GradientBlueIcon.js")
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function IscsLun16OntintIcon({
|
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": "IscsLun16OntintIcon",
|
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.34 3.634a.5.5 0 11-.706.707L8.778 2.485a8.498 8.498 0 00-.444-.427.57.57 0 00-.18-.12.5.5 0 00-.309 0 .57.57 0 00-.179.12c-.108.092-.24.223-.444.427L4.556 5.151a8.506 8.506 0 00-.427.444.57.57 0 00-.12.18.5.5 0 000 .309.57.57 0 00.12.179c.092.108.223.24.427.444l2.666 2.666c.204.204.336.335.444.427a.57.57 0 00.18.12.5.5 0 00.308 0 .57.57 0 00.18-.12 8.5 8.5 0 00.444-.427l1.856-1.856a.5.5 0 11.707.707l-1.87 1.87c-.186.186-.347.347-.49.469a1.526 1.526 0 01-.518.307 1.5 1.5 0 01-.927 0 1.526 1.526 0 01-.517-.307c-.143-.122-.304-.283-.49-.47L3.835 7.4c-.186-.186-.347-.347-.469-.49a1.527 1.527 0 01-.307-.517 1.5 1.5 0 010-.927c.065-.202.179-.367.307-.518.122-.143.283-.304.47-.49l2.693-2.694c.186-.186.347-.347.49-.468.151-.129.315-.243.517-.308a1.5 1.5 0 01.927 0c.202.065.367.18.518.308.143.121.304.282.49.468l1.87 1.87zM8.5 6a.5.5 0 01.5-.5h4.5a.5.5 0 010 1H9a.5.5 0 01-.5-.5zm-5.216 9h2.31v-.748H4.212v-2.67h-.928V15zm4.907-3.418v2.11a.528.528 0 01-.547.547.528.528 0 01-.547-.548v-2.11h-.928v2.19c0 .782.59 1.269 1.475 1.269.878 0 1.475-.487 1.475-1.268v-2.19h-.928zm3.6 0h.927V15h-.774l-1.236-1.796h-.02V15h-.927v-3.418h.787l1.215 1.789h.027v-1.79z",
|
20
|
+
fill: "#fff"
|
21
|
+
}));
|
22
|
+
}
|
23
|
+
export default IscsLun16OntintIcon;
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function IscsiTargetDatastoreStorageObject16OntintIcon({
|
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": "IscsiTargetDatastoreStorageObject16OntintIcon",
|
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: "M9.471 1.764l1.87 1.87a.5.5 0 11-.707.707L8.778 2.485a8.502 8.502 0 00-.444-.427.57.57 0 00-.18-.12.5.5 0 00-.309 0 .57.57 0 00-.179.12c-.108.092-.24.223-.444.427L4.556 5.15a8.498 8.498 0 00-.427.444.57.57 0 00-.12.18.5.5 0 000 .308.57.57 0 00.12.18c.092.108.223.24.427.444l2.666 2.666c.204.204.336.335.444.427a.57.57 0 00.18.12.5.5 0 00.308 0 .57.57 0 00.18-.12c.108-.092.24-.223.444-.427l1.856-1.856a.5.5 0 11.707.707l-1.87 1.87a8.941 8.941 0 01-.49.469 1.526 1.526 0 01-.518.307 1.5 1.5 0 01-.927 0 1.526 1.526 0 01-.517-.307 8.941 8.941 0 01-.49-.47L3.835 7.4c-.186-.186-.347-.347-.469-.49a1.527 1.527 0 01-.307-.518 1.5 1.5 0 010-.927c.065-.202.179-.366.307-.517.122-.143.283-.304.47-.49l2.693-2.694c.186-.186.347-.347.49-.469.151-.128.315-.242.517-.307a1.5 1.5 0 01.927 0c.202.065.367.179.518.307.143.122.304.283.49.47zM8.5 6a.5.5 0 01.5-.5h4.5a.5.5 0 010 1H9a.5.5 0 01-.5-.5zM3.645 9.42l.072-.017.853.853c-.25.042-.484.088-.7.138-.523.121-.912.258-1.158.393-.072.039-.123.073-.16.102.037.028.088.063.16.102.246.134.635.271 1.158.393 1.04.24 2.5.394 4.13.394s3.09-.154 4.13-.394c.523-.122.912-.259 1.158-.393.072-.04.123-.074.16-.102a1.158 1.158 0 00-.16-.102c-.246-.135-.635-.272-1.158-.393a11.58 11.58 0 00-.7-.138l.853-.853.072.017c.563.13 1.052.292 1.413.49.18.098.353.218.485.368a.92.92 0 01.247.61v2.223a.92.92 0 01-.247.611c-.132.15-.304.27-.485.368-.36.198-.85.36-1.413.49-1.132.262-2.672.42-4.355.42-1.683 0-3.223-.158-4.355-.42-.563-.13-1.052-.292-1.414-.49a1.784 1.784 0 01-.484-.368.92.92 0 01-.247-.611v-2.222c0-.252.113-.459.247-.611.132-.15.304-.27.484-.368.362-.198.851-.36 1.414-.49zM2.5 11.999v1.065c.03.032.093.084.212.149.246.135.635.272 1.158.393 1.04.24 2.5.394 4.13.394s3.09-.153 4.13-.394c.523-.121.912-.258 1.158-.393a.855.855 0 00.212-.15V12c-.321.14-.711.259-1.145.359-1.132.262-2.672.42-4.355.42-1.683 0-3.223-.158-4.355-.42-.434-.1-.824-.22-1.145-.36z",
|
20
|
+
fill: "#fff"
|
21
|
+
}));
|
22
|
+
}
|
23
|
+
export default IscsiTargetDatastoreStorageObject16OntintIcon;
|