@cloudtower/icons-react 0.31.0 → 0.31.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/dist/SecurityPodGroup16GradientBlueIcon.d.ts +4 -0
  2. package/dist/SecurityPodGroup16GradientGrayIcon.d.ts +4 -0
  3. package/dist/SecurityPodGroup16GradientRedIcon.d.ts +4 -0
  4. package/dist/SecurityPodGroup24GradientBlueIcon.d.ts +4 -0
  5. package/dist/SecurityPodGroup24GradientGrayIcon.d.ts +4 -0
  6. package/dist/SecurityPodGroup24GradientRedIcon.d.ts +4 -0
  7. package/dist/SecurityVmGroup16GradientBlueIcon.d.ts +4 -0
  8. package/dist/SecurityVmGroup16GradientGrayIcon.d.ts +4 -0
  9. package/dist/SecurityVmGroup16GradientRedIcon.d.ts +4 -0
  10. package/dist/SecurityVmGroup24GradientBlueIcon.d.ts +4 -0
  11. package/dist/SecurityVmGroup24GradientGrayIcon.d.ts +4 -0
  12. package/dist/SecurityVmGroup24GradientRedIcon.d.ts +4 -0
  13. package/dist/SksEicPod16GradientBlueIcon.d.ts +4 -0
  14. package/dist/SksEicPod16GradientGrayIcon.d.ts +4 -0
  15. package/dist/SksEicPod24GradientBlueIcon.d.ts +4 -0
  16. package/dist/SksEicPod24GradientGrayIcon.d.ts +4 -0
  17. package/dist/VmSnapshot16GradientGrayIcon.d.ts +4 -0
  18. package/dist/VmSnapshotRebuild16GradientBlueIcon.d.ts +4 -0
  19. package/dist/VmSnapshotRebuild24GradientBlueIcon.d.ts +4 -0
  20. package/dist/cjs/SecurityPodGroup16GradientBlueIcon.js +67 -0
  21. package/dist/cjs/SecurityPodGroup16GradientGrayIcon.js +67 -0
  22. package/dist/cjs/SecurityPodGroup16GradientRedIcon.js +67 -0
  23. package/dist/cjs/SecurityPodGroup24GradientBlueIcon.js +67 -0
  24. package/dist/cjs/SecurityPodGroup24GradientGrayIcon.js +67 -0
  25. package/dist/cjs/SecurityPodGroup24GradientRedIcon.js +67 -0
  26. package/dist/cjs/SecurityVmGroup16GradientBlueIcon.js +65 -0
  27. package/dist/cjs/SecurityVmGroup16GradientGrayIcon.js +65 -0
  28. package/dist/cjs/SecurityVmGroup16GradientRedIcon.js +65 -0
  29. package/dist/cjs/SecurityVmGroup24GradientBlueIcon.js +65 -0
  30. package/dist/cjs/SecurityVmGroup24GradientGrayIcon.js +65 -0
  31. package/dist/cjs/SecurityVmGroup24GradientRedIcon.js +65 -0
  32. package/dist/cjs/SksEicPod16GradientBlueIcon.js +42 -0
  33. package/dist/cjs/SksEicPod16GradientGrayIcon.js +42 -0
  34. package/dist/cjs/SksEicPod24GradientBlueIcon.js +35 -0
  35. package/dist/cjs/SksEicPod24GradientGrayIcon.js +35 -0
  36. package/dist/cjs/VmSnapshot16GradientGrayIcon.js +35 -0
  37. package/dist/cjs/VmSnapshotRebuild16GradientBlueIcon.js +35 -0
  38. package/dist/cjs/VmSnapshotRebuild24GradientBlueIcon.js +35 -0
  39. package/dist/cjs/index.js +19 -0
  40. package/dist/esm/SecurityPodGroup16GradientBlueIcon.js +67 -0
  41. package/dist/esm/SecurityPodGroup16GradientGrayIcon.js +67 -0
  42. package/dist/esm/SecurityPodGroup16GradientRedIcon.js +67 -0
  43. package/dist/esm/SecurityPodGroup24GradientBlueIcon.js +67 -0
  44. package/dist/esm/SecurityPodGroup24GradientGrayIcon.js +67 -0
  45. package/dist/esm/SecurityPodGroup24GradientRedIcon.js +67 -0
  46. package/dist/esm/SecurityVmGroup16GradientBlueIcon.js +65 -0
  47. package/dist/esm/SecurityVmGroup16GradientGrayIcon.js +65 -0
  48. package/dist/esm/SecurityVmGroup16GradientRedIcon.js +65 -0
  49. package/dist/esm/SecurityVmGroup24GradientBlueIcon.js +65 -0
  50. package/dist/esm/SecurityVmGroup24GradientGrayIcon.js +65 -0
  51. package/dist/esm/SecurityVmGroup24GradientRedIcon.js +65 -0
  52. package/dist/esm/SksEicPod16GradientBlueIcon.js +42 -0
  53. package/dist/esm/SksEicPod16GradientGrayIcon.js +42 -0
  54. package/dist/esm/SksEicPod24GradientBlueIcon.js +35 -0
  55. package/dist/esm/SksEicPod24GradientGrayIcon.js +35 -0
  56. package/dist/esm/VmSnapshot16GradientGrayIcon.js +35 -0
  57. package/dist/esm/VmSnapshotRebuild16GradientBlueIcon.js +35 -0
  58. package/dist/esm/VmSnapshotRebuild24GradientBlueIcon.js +35 -0
  59. package/dist/esm/index.js +19 -0
  60. package/dist/image-types.d.ts +1 -1
  61. package/dist/index.d.ts +19 -0
  62. package/package.json +3 -3
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ declare const SecurityPodGroup16GradientBlueIcon: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SecurityPodGroup16GradientBlueIcon;
4
+
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ declare const SecurityPodGroup16GradientGrayIcon: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SecurityPodGroup16GradientGrayIcon;
4
+
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ declare const SecurityPodGroup16GradientRedIcon: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SecurityPodGroup16GradientRedIcon;
4
+
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ declare const SecurityPodGroup24GradientBlueIcon: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SecurityPodGroup24GradientBlueIcon;
4
+
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ declare const SecurityPodGroup24GradientGrayIcon: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SecurityPodGroup24GradientGrayIcon;
4
+
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ declare const SecurityPodGroup24GradientRedIcon: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SecurityPodGroup24GradientRedIcon;
4
+
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ declare const SecurityVmGroup16GradientBlueIcon: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SecurityVmGroup16GradientBlueIcon;
4
+
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ declare const SecurityVmGroup16GradientGrayIcon: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SecurityVmGroup16GradientGrayIcon;
4
+
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ declare const SecurityVmGroup16GradientRedIcon: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SecurityVmGroup16GradientRedIcon;
4
+
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ declare const SecurityVmGroup24GradientBlueIcon: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SecurityVmGroup24GradientBlueIcon;
4
+
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ declare const SecurityVmGroup24GradientGrayIcon: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SecurityVmGroup24GradientGrayIcon;
4
+
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ declare const SecurityVmGroup24GradientRedIcon: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SecurityVmGroup24GradientRedIcon;
4
+
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ declare const SksEicPod16GradientBlueIcon: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SksEicPod16GradientBlueIcon;
4
+
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ declare const SksEicPod16GradientGrayIcon: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SksEicPod16GradientGrayIcon;
4
+
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ declare const SksEicPod24GradientBlueIcon: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SksEicPod24GradientBlueIcon;
4
+
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ declare const SksEicPod24GradientGrayIcon: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default SksEicPod24GradientGrayIcon;
4
+
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ declare const VmSnapshot16GradientGrayIcon: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default VmSnapshot16GradientGrayIcon;
4
+
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ declare const VmSnapshotRebuild16GradientBlueIcon: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default VmSnapshotRebuild16GradientBlueIcon;
4
+
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ declare const VmSnapshotRebuild24GradientBlueIcon: (props: React.SVGProps<SVGSVGElement>) => JSX.Element;
3
+ export default VmSnapshotRebuild24GradientBlueIcon;
4
+
@@ -0,0 +1,67 @@
1
+ const React = require("react");
2
+ function SecurityPodGroup16GradientBlueIcon({
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": "SecurityPodGroup16GradientBlueIcon",
13
+ "aria-labelledby": titleId
14
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
15
+ id: titleId
16
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
17
+ d: "M12.6 6V4.8a.4.4 0 00-.4-.4H8a2.4 2.4 0 01-1.92-.96l-.21-.28A.4.4 0 005.55 3H2.4a.4.4 0 00-.4.4v7.7c0 .22.18.4.4.4h6v1h-6A1.4 1.4 0 011 11.1V3.4A1.4 1.4 0 012.4 2h3.15a1.4 1.4 0 011.12.56l.21.28A1.4 1.4 0 008 3.4h4.2a1.4 1.4 0 011.4 1.4V6h-1z",
18
+ fill: "url(#paint0_radial_SecurityPodGroup16GradientBlueIcon_15330_77887)"
19
+ }), /*#__PURE__*/React.createElement("path", {
20
+ fillRule: "evenodd",
21
+ clipRule: "evenodd",
22
+ d: "M5.468 5.081a.606.606 0 00-.606 0l-1.559.9A.606.606 0 003 6.506v1.8c0 .217.116.417.303.525l1.559.9a.606.606 0 00.606 0l1.559-.9a.606.606 0 00.303-.525v-1.8a.606.606 0 00-.303-.525l-1.559-.9zm-.303.98L4 6.734v1.345l1.165.672L6.33 8.08V6.734L5.165 6.06z",
23
+ fill: "url(#paint1_radial_SecurityPodGroup16GradientBlueIcon_15330_77887)"
24
+ }), /*#__PURE__*/React.createElement("path", {
25
+ fillRule: "evenodd",
26
+ clipRule: "evenodd",
27
+ d: "M10.519 13.172c.389.298.72.502.994.632.268.128.501.196.688.196.186 0 .42-.068.687-.196.274-.13.605-.334.995-.632l.031-.024c.35-.267.638-.487.823-.778.2-.316.264-.685.264-1.217V8.784c0-.224.001-.48-.197-.702a1.335 1.335 0 00-.377-.274 6.848 6.848 0 00-.609-.274C12.576 7.028 12.408 7 12.201 7c-.207 0-.376.028-1.618.534a6.86 6.86 0 00-.609.274 1.333 1.333 0 00-.376.274c-.199.222-.198.478-.198.702v2.369c0 .532.064.901.264 1.217.185.291.473.511.823.778l.032.024zm3.682-4.39V10.5h-2v2.7s-.03-.001-.094-.019a1.659 1.659 0 01-.25-.099 5.035 5.035 0 01-.853-.545l-.031-.024c-.381-.291-.54-.424-.633-.571-.078-.124-.14-.31-.14-.789v-.652h2.001V7.8h.003c.02-.004.1-.02 1.313.475.248.101.417.177.534.239a1.116 1.116 0 01.144.09l.004.047c.002.034.002.072.002.131z",
28
+ fill: "url(#paint2_radial_SecurityPodGroup16GradientBlueIcon_15330_77887)"
29
+ }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
30
+ id: "paint0_radial_SecurityPodGroup16GradientBlueIcon_15330_77887",
31
+ cx: 0,
32
+ cy: 0,
33
+ r: 1,
34
+ gradientUnits: "userSpaceOnUse",
35
+ gradientTransform: "matrix(14.00082 -11.99998 11.8587 13.83598 1 14)"
36
+ }, /*#__PURE__*/React.createElement("stop", {
37
+ stopColor: "#5BCAFF"
38
+ }), /*#__PURE__*/React.createElement("stop", {
39
+ offset: 1,
40
+ stopColor: "#06F"
41
+ })), /*#__PURE__*/React.createElement("radialGradient", {
42
+ id: "paint1_radial_SecurityPodGroup16GradientBlueIcon_15330_77887",
43
+ cx: 0,
44
+ cy: 0,
45
+ r: 1,
46
+ gradientUnits: "userSpaceOnUse",
47
+ gradientTransform: "matrix(14.00082 -11.99998 11.8587 13.83598 1 14)"
48
+ }, /*#__PURE__*/React.createElement("stop", {
49
+ stopColor: "#5BCAFF"
50
+ }), /*#__PURE__*/React.createElement("stop", {
51
+ offset: 1,
52
+ stopColor: "#06F"
53
+ })), /*#__PURE__*/React.createElement("radialGradient", {
54
+ id: "paint2_radial_SecurityPodGroup16GradientBlueIcon_15330_77887",
55
+ cx: 0,
56
+ cy: 0,
57
+ r: 1,
58
+ gradientUnits: "userSpaceOnUse",
59
+ gradientTransform: "matrix(14.00082 -11.99998 11.8587 13.83598 1 14)"
60
+ }, /*#__PURE__*/React.createElement("stop", {
61
+ stopColor: "#5BCAFF"
62
+ }), /*#__PURE__*/React.createElement("stop", {
63
+ offset: 1,
64
+ stopColor: "#06F"
65
+ }))));
66
+ }
67
+ module.exports = SecurityPodGroup16GradientBlueIcon;
@@ -0,0 +1,67 @@
1
+ const React = require("react");
2
+ function SecurityPodGroup16GradientGrayIcon({
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": "SecurityPodGroup16GradientGrayIcon",
13
+ "aria-labelledby": titleId
14
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
15
+ id: titleId
16
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
17
+ d: "M12.6 6V4.8a.4.4 0 00-.4-.4H8a2.4 2.4 0 01-1.92-.96l-.21-.28A.4.4 0 005.55 3H2.4a.4.4 0 00-.4.4v7.7c0 .22.18.4.4.4h6v1h-6A1.4 1.4 0 011 11.1V3.4A1.4 1.4 0 012.4 2h3.15a1.4 1.4 0 011.12.56l.21.28A1.4 1.4 0 008 3.4h4.2a1.4 1.4 0 011.4 1.4V6h-1z",
18
+ fill: "url(#paint0_radial_SecurityPodGroup16GradientGrayIcon_15330_77897)"
19
+ }), /*#__PURE__*/React.createElement("path", {
20
+ fillRule: "evenodd",
21
+ clipRule: "evenodd",
22
+ d: "M5.468 5.081a.606.606 0 00-.606 0l-1.559.9A.606.606 0 003 6.506v1.8c0 .217.116.417.303.525l1.559.9a.606.606 0 00.606 0l1.559-.9a.606.606 0 00.303-.525v-1.8a.606.606 0 00-.303-.525l-1.559-.9zm-.303.98L4 6.734v1.345l1.165.672L6.33 8.08V6.734L5.165 6.06z",
23
+ fill: "url(#paint1_radial_SecurityPodGroup16GradientGrayIcon_15330_77897)"
24
+ }), /*#__PURE__*/React.createElement("path", {
25
+ fillRule: "evenodd",
26
+ clipRule: "evenodd",
27
+ d: "M10.519 13.172c.389.298.72.502.994.632.268.128.501.196.688.196.186 0 .42-.068.687-.196.274-.13.605-.334.995-.632l.031-.024c.35-.267.638-.487.823-.778.2-.316.264-.685.264-1.217V8.784c0-.224.001-.48-.197-.702a1.335 1.335 0 00-.377-.274 6.848 6.848 0 00-.609-.274C12.576 7.028 12.408 7 12.201 7c-.207 0-.376.028-1.618.534a6.86 6.86 0 00-.609.274 1.333 1.333 0 00-.376.274c-.199.222-.198.478-.198.702v2.369c0 .532.064.901.264 1.217.185.291.473.511.823.778l.032.024zm3.682-4.39V10.5h-2v2.7c-.001 0-.03-.001-.094-.019a1.659 1.659 0 01-.25-.099 5.035 5.035 0 01-.853-.545l-.031-.024c-.381-.291-.54-.424-.633-.571-.078-.124-.14-.31-.14-.789v-.652h2.001V7.8a.02.02 0 00.003 0c.02-.004.1-.02 1.313.475.248.101.417.177.534.239a1.116 1.116 0 01.144.09l.004.047c.002.034.002.072.002.131z",
28
+ fill: "url(#paint2_radial_SecurityPodGroup16GradientGrayIcon_15330_77897)"
29
+ }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
30
+ id: "paint0_radial_SecurityPodGroup16GradientGrayIcon_15330_77897",
31
+ cx: 0,
32
+ cy: 0,
33
+ r: 1,
34
+ gradientUnits: "userSpaceOnUse",
35
+ gradientTransform: "matrix(14.00082 -11.99998 11.8587 13.83598 1 14)"
36
+ }, /*#__PURE__*/React.createElement("stop", {
37
+ stopColor: "#CCD4E3"
38
+ }), /*#__PURE__*/React.createElement("stop", {
39
+ offset: 1,
40
+ stopColor: "#6B7D99"
41
+ })), /*#__PURE__*/React.createElement("radialGradient", {
42
+ id: "paint1_radial_SecurityPodGroup16GradientGrayIcon_15330_77897",
43
+ cx: 0,
44
+ cy: 0,
45
+ r: 1,
46
+ gradientUnits: "userSpaceOnUse",
47
+ gradientTransform: "matrix(14.00082 -11.99998 11.8587 13.83598 1 14)"
48
+ }, /*#__PURE__*/React.createElement("stop", {
49
+ stopColor: "#CCD4E3"
50
+ }), /*#__PURE__*/React.createElement("stop", {
51
+ offset: 1,
52
+ stopColor: "#6B7D99"
53
+ })), /*#__PURE__*/React.createElement("radialGradient", {
54
+ id: "paint2_radial_SecurityPodGroup16GradientGrayIcon_15330_77897",
55
+ cx: 0,
56
+ cy: 0,
57
+ r: 1,
58
+ gradientUnits: "userSpaceOnUse",
59
+ gradientTransform: "matrix(14.00082 -11.99998 11.8587 13.83598 1 14)"
60
+ }, /*#__PURE__*/React.createElement("stop", {
61
+ stopColor: "#CCD4E3"
62
+ }), /*#__PURE__*/React.createElement("stop", {
63
+ offset: 1,
64
+ stopColor: "#6B7D99"
65
+ }))));
66
+ }
67
+ module.exports = SecurityPodGroup16GradientGrayIcon;
@@ -0,0 +1,67 @@
1
+ const React = require("react");
2
+ function SecurityPodGroup16GradientRedIcon({
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": "SecurityPodGroup16GradientRedIcon",
13
+ "aria-labelledby": titleId
14
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
15
+ id: titleId
16
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
17
+ d: "M12.6 6V4.8a.4.4 0 00-.4-.4H8a2.4 2.4 0 01-1.92-.96l-.21-.28A.4.4 0 005.55 3H2.4a.4.4 0 00-.4.4v7.7c0 .22.18.4.4.4h6v1h-6A1.4 1.4 0 011 11.1V3.4A1.4 1.4 0 012.4 2h3.15a1.4 1.4 0 011.12.56l.21.28A1.4 1.4 0 008 3.4h4.2a1.4 1.4 0 011.4 1.4V6h-1z",
18
+ fill: "url(#paint0_radial_SecurityPodGroup16GradientRedIcon_15447_6631)"
19
+ }), /*#__PURE__*/React.createElement("path", {
20
+ fillRule: "evenodd",
21
+ clipRule: "evenodd",
22
+ d: "M5.468 5.081a.606.606 0 00-.606 0l-1.559.9A.606.606 0 003 6.506v1.8c0 .217.116.417.303.525l1.559.9a.606.606 0 00.606 0l1.559-.9a.606.606 0 00.303-.525v-1.8a.606.606 0 00-.303-.525l-1.559-.9zm-.303.98L4 6.734v1.345l1.165.672L6.33 8.08V6.734L5.165 6.06z",
23
+ fill: "url(#paint1_radial_SecurityPodGroup16GradientRedIcon_15447_6631)"
24
+ }), /*#__PURE__*/React.createElement("path", {
25
+ fillRule: "evenodd",
26
+ clipRule: "evenodd",
27
+ d: "M10.519 13.172c.389.298.72.502.994.632.268.128.501.196.688.196.186 0 .42-.068.687-.196.274-.13.605-.334.995-.632l.031-.024c.35-.267.638-.487.823-.778.2-.316.264-.685.264-1.217V8.784c0-.224.001-.48-.197-.702a1.335 1.335 0 00-.377-.274 6.848 6.848 0 00-.609-.274C12.576 7.028 12.408 7 12.201 7c-.207 0-.376.028-1.618.534a6.86 6.86 0 00-.609.274 1.333 1.333 0 00-.376.274c-.199.222-.198.478-.198.702v2.369c0 .532.064.901.264 1.217.185.291.473.511.823.778l.032.024zm3.682-4.39V10.5h-2v2.7c-.001 0-.03-.001-.094-.019a1.659 1.659 0 01-.25-.099 5.035 5.035 0 01-.853-.545l-.031-.024c-.381-.291-.54-.424-.633-.571-.078-.124-.14-.31-.14-.789v-.652h2.001V7.8a.02.02 0 00.003 0c.02-.004.1-.02 1.313.475.248.101.417.177.534.239a1.116 1.116 0 01.144.09l.004.047c.002.034.002.072.002.131z",
28
+ fill: "url(#paint2_radial_SecurityPodGroup16GradientRedIcon_15447_6631)"
29
+ }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
30
+ id: "paint0_radial_SecurityPodGroup16GradientRedIcon_15447_6631",
31
+ cx: 0,
32
+ cy: 0,
33
+ r: 1,
34
+ gradientUnits: "userSpaceOnUse",
35
+ gradientTransform: "matrix(14.00082 -11.99998 11.8587 13.83598 1 14)"
36
+ }, /*#__PURE__*/React.createElement("stop", {
37
+ stopColor: "#FF5C78"
38
+ }), /*#__PURE__*/React.createElement("stop", {
39
+ offset: 1,
40
+ stopColor: "#DC0000"
41
+ })), /*#__PURE__*/React.createElement("radialGradient", {
42
+ id: "paint1_radial_SecurityPodGroup16GradientRedIcon_15447_6631",
43
+ cx: 0,
44
+ cy: 0,
45
+ r: 1,
46
+ gradientUnits: "userSpaceOnUse",
47
+ gradientTransform: "matrix(14.00082 -11.99998 11.8587 13.83598 1 14)"
48
+ }, /*#__PURE__*/React.createElement("stop", {
49
+ stopColor: "#FF5C78"
50
+ }), /*#__PURE__*/React.createElement("stop", {
51
+ offset: 1,
52
+ stopColor: "#DC0000"
53
+ })), /*#__PURE__*/React.createElement("radialGradient", {
54
+ id: "paint2_radial_SecurityPodGroup16GradientRedIcon_15447_6631",
55
+ cx: 0,
56
+ cy: 0,
57
+ r: 1,
58
+ gradientUnits: "userSpaceOnUse",
59
+ gradientTransform: "matrix(14.00082 -11.99998 11.8587 13.83598 1 14)"
60
+ }, /*#__PURE__*/React.createElement("stop", {
61
+ stopColor: "#FF5C78"
62
+ }), /*#__PURE__*/React.createElement("stop", {
63
+ offset: 1,
64
+ stopColor: "#DC0000"
65
+ }))));
66
+ }
67
+ module.exports = SecurityPodGroup16GradientRedIcon;
@@ -0,0 +1,67 @@
1
+ const React = require("react");
2
+ function SecurityPodGroup24GradientBlueIcon({
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": "SecurityPodGroup24GradientBlueIcon",
13
+ "aria-labelledby": titleId
14
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
15
+ id: titleId
16
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
17
+ d: "M19.9 9.5V7.2a1.1 1.1 0 00-1.1-1.1h-6.3a3.1 3.1 0 01-2.48-1.24l-.315-.42a1.1 1.1 0 00-.88-.44H4.1A1.1 1.1 0 003 5.1v11.55a1.1 1.1 0 001.1 1.1h8.5v1H4.1a2.1 2.1 0 01-2.1-2.1V5.1C2 3.94 2.94 3 4.1 3h4.725a2.1 2.1 0 011.68.84l.315.42a2.1 2.1 0 001.68.84h6.3c1.16 0 2.1.94 2.1 2.1v2.3h-1z",
18
+ fill: "url(#paint0_radial_SecurityPodGroup24GradientBlueIcon_15330_77873)"
19
+ }), /*#__PURE__*/React.createElement("path", {
20
+ fillRule: "evenodd",
21
+ clipRule: "evenodd",
22
+ d: "M8.436 7.622a.91.91 0 00-.91 0L5.406 8.847a.91.91 0 00-.455.787v2.45a.91.91 0 00.455.788l2.122 1.225a.91.91 0 00.909 0l2.122-1.225a.91.91 0 00.454-.788v-2.45a.91.91 0 00-.454-.787L8.436 7.622zm-.455.892l-2.03 1.173v2.345l2.03 1.173 2.031-1.173V9.687l-2.03-1.173z",
23
+ fill: "url(#paint1_radial_SecurityPodGroup24GradientBlueIcon_15330_77873)"
24
+ }), /*#__PURE__*/React.createElement("path", {
25
+ fillRule: "evenodd",
26
+ clipRule: "evenodd",
27
+ d: "M22.001 13.176c.001-.336.002-.72-.296-1.053-.142-.16-.334-.29-.565-.412a10.328 10.328 0 00-.913-.41c-1.863-.76-2.116-.801-2.426-.801-.31 0-.563.042-2.427.801-.38.155-.68.287-.913.41-.23.123-.422.252-.565.412-.297.333-.296.717-.295 1.053v3.554c0 .798.096 1.351.396 1.825.277.437.709.767 1.234 1.168l.047.036c.583.446 1.08.751 1.491.947.402.192.752.294 1.032.294s.63-.102 1.031-.294c.411-.196.908-.501 1.492-.947l.047-.036c.525-.401.957-.731 1.234-1.168.3-.474.396-1.027.396-1.825v-3.554zm-1-.002v2.577h-3.2V20c-.063 0-.256-.031-.6-.196-.334-.16-.772-.424-1.316-.84l-.047-.036c-.564-.43-.834-.652-.996-.908-.149-.234-.241-.558-.241-1.29v-.98h3.2V11.5h.013c.072-.004.225-.01 2.036.727.375.153.635.269.82.367.189.1.261.163.29.195.01.012.018.021.026.06.013.063.016.143.015.325z",
28
+ fill: "url(#paint2_radial_SecurityPodGroup24GradientBlueIcon_15330_77873)"
29
+ }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
30
+ id: "paint0_radial_SecurityPodGroup24GradientBlueIcon_15330_77873",
31
+ cx: 0,
32
+ cy: 0,
33
+ r: 1,
34
+ gradientUnits: "userSpaceOnUse",
35
+ gradientTransform: "matrix(20.00128 -18 17.9004 19.8906 2 21)"
36
+ }, /*#__PURE__*/React.createElement("stop", {
37
+ stopColor: "#5BCAFF"
38
+ }), /*#__PURE__*/React.createElement("stop", {
39
+ offset: 1,
40
+ stopColor: "#06F"
41
+ })), /*#__PURE__*/React.createElement("radialGradient", {
42
+ id: "paint1_radial_SecurityPodGroup24GradientBlueIcon_15330_77873",
43
+ cx: 0,
44
+ cy: 0,
45
+ r: 1,
46
+ gradientUnits: "userSpaceOnUse",
47
+ gradientTransform: "matrix(20.00128 -18 17.9004 19.8906 2 21)"
48
+ }, /*#__PURE__*/React.createElement("stop", {
49
+ stopColor: "#5BCAFF"
50
+ }), /*#__PURE__*/React.createElement("stop", {
51
+ offset: 1,
52
+ stopColor: "#06F"
53
+ })), /*#__PURE__*/React.createElement("radialGradient", {
54
+ id: "paint2_radial_SecurityPodGroup24GradientBlueIcon_15330_77873",
55
+ cx: 0,
56
+ cy: 0,
57
+ r: 1,
58
+ gradientUnits: "userSpaceOnUse",
59
+ gradientTransform: "matrix(20.00128 -18 17.9004 19.8906 2 21)"
60
+ }, /*#__PURE__*/React.createElement("stop", {
61
+ stopColor: "#5BCAFF"
62
+ }), /*#__PURE__*/React.createElement("stop", {
63
+ offset: 1,
64
+ stopColor: "#06F"
65
+ }))));
66
+ }
67
+ module.exports = SecurityPodGroup24GradientBlueIcon;
@@ -0,0 +1,67 @@
1
+ const React = require("react");
2
+ function SecurityPodGroup24GradientGrayIcon({
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": "SecurityPodGroup24GradientGrayIcon",
13
+ "aria-labelledby": titleId
14
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
15
+ id: titleId
16
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
17
+ d: "M19.9 9.5V7.2a1.1 1.1 0 00-1.1-1.1h-6.3a3.1 3.1 0 01-2.48-1.24l-.315-.42a1.1 1.1 0 00-.88-.44H4.1A1.1 1.1 0 003 5.1v11.55a1.1 1.1 0 001.1 1.1h8.5v1H4.1a2.1 2.1 0 01-2.1-2.1V5.1C2 3.94 2.94 3 4.1 3h4.725a2.1 2.1 0 011.68.84l.315.42a2.1 2.1 0 001.68.84h6.3c1.16 0 2.1.94 2.1 2.1v2.3h-1z",
18
+ fill: "url(#paint0_radial_SecurityPodGroup24GradientGrayIcon_15330_77880)"
19
+ }), /*#__PURE__*/React.createElement("path", {
20
+ fillRule: "evenodd",
21
+ clipRule: "evenodd",
22
+ d: "M8.436 7.622a.91.91 0 00-.91 0L5.406 8.847a.91.91 0 00-.455.787v2.45a.91.91 0 00.455.788l2.122 1.225a.91.91 0 00.909 0l2.122-1.225a.91.91 0 00.454-.788v-2.45a.91.91 0 00-.454-.787L8.436 7.622zm-.455.892l-2.03 1.173v2.345l2.03 1.173 2.031-1.173V9.687l-2.03-1.173z",
23
+ fill: "url(#paint1_radial_SecurityPodGroup24GradientGrayIcon_15330_77880)"
24
+ }), /*#__PURE__*/React.createElement("path", {
25
+ fillRule: "evenodd",
26
+ clipRule: "evenodd",
27
+ d: "M22.001 13.176c.001-.336.002-.72-.296-1.053-.142-.16-.334-.29-.565-.412a10.328 10.328 0 00-.913-.41c-1.863-.76-2.116-.801-2.426-.801-.31 0-.563.042-2.427.801-.38.155-.68.287-.913.41-.23.123-.422.252-.565.412-.297.333-.296.717-.295 1.053v3.554c0 .798.096 1.351.396 1.825.277.437.709.767 1.234 1.168l.047.036c.583.446 1.08.751 1.491.947.402.192.752.294 1.032.294s.63-.102 1.031-.294c.411-.196.908-.501 1.492-.947l.047-.036c.525-.401.957-.731 1.234-1.168.3-.474.396-1.027.396-1.825v-3.554zm-1-.002v2.577h-3.2V20c-.063 0-.256-.031-.6-.196-.334-.16-.772-.424-1.316-.84l-.047-.036c-.564-.43-.834-.652-.996-.908-.149-.234-.241-.558-.241-1.29v-.98h3.2V11.5h.013c.072-.004.225-.01 2.036.727.375.153.635.269.82.367.189.1.261.163.29.195.01.012.018.021.026.06.013.063.016.143.015.325z",
28
+ fill: "url(#paint2_radial_SecurityPodGroup24GradientGrayIcon_15330_77880)"
29
+ }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
30
+ id: "paint0_radial_SecurityPodGroup24GradientGrayIcon_15330_77880",
31
+ cx: 0,
32
+ cy: 0,
33
+ r: 1,
34
+ gradientUnits: "userSpaceOnUse",
35
+ gradientTransform: "matrix(20.00128 -18 17.9004 19.8906 2 21)"
36
+ }, /*#__PURE__*/React.createElement("stop", {
37
+ stopColor: "#CCD4E3"
38
+ }), /*#__PURE__*/React.createElement("stop", {
39
+ offset: 1,
40
+ stopColor: "#6B7D99"
41
+ })), /*#__PURE__*/React.createElement("radialGradient", {
42
+ id: "paint1_radial_SecurityPodGroup24GradientGrayIcon_15330_77880",
43
+ cx: 0,
44
+ cy: 0,
45
+ r: 1,
46
+ gradientUnits: "userSpaceOnUse",
47
+ gradientTransform: "matrix(20.00128 -18 17.9004 19.8906 2 21)"
48
+ }, /*#__PURE__*/React.createElement("stop", {
49
+ stopColor: "#CCD4E3"
50
+ }), /*#__PURE__*/React.createElement("stop", {
51
+ offset: 1,
52
+ stopColor: "#6B7D99"
53
+ })), /*#__PURE__*/React.createElement("radialGradient", {
54
+ id: "paint2_radial_SecurityPodGroup24GradientGrayIcon_15330_77880",
55
+ cx: 0,
56
+ cy: 0,
57
+ r: 1,
58
+ gradientUnits: "userSpaceOnUse",
59
+ gradientTransform: "matrix(20.00128 -18 17.9004 19.8906 2 21)"
60
+ }, /*#__PURE__*/React.createElement("stop", {
61
+ stopColor: "#CCD4E3"
62
+ }), /*#__PURE__*/React.createElement("stop", {
63
+ offset: 1,
64
+ stopColor: "#6B7D99"
65
+ }))));
66
+ }
67
+ module.exports = SecurityPodGroup24GradientGrayIcon;
@@ -0,0 +1,67 @@
1
+ const React = require("react");
2
+ function SecurityPodGroup24GradientRedIcon({
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": "SecurityPodGroup24GradientRedIcon",
13
+ "aria-labelledby": titleId
14
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
15
+ id: titleId
16
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
17
+ d: "M19.9 9.5V7.2a1.1 1.1 0 00-1.1-1.1h-6.3a3.1 3.1 0 01-2.48-1.24l-.315-.42a1.1 1.1 0 00-.88-.44H4.1A1.1 1.1 0 003 5.1v11.55a1.1 1.1 0 001.1 1.1h8.5v1H4.1a2.1 2.1 0 01-2.1-2.1V5.1C2 3.94 2.94 3 4.1 3h4.725a2.1 2.1 0 011.68.84l.315.42a2.1 2.1 0 001.68.84h6.3c1.16 0 2.1.94 2.1 2.1v2.3h-1z",
18
+ fill: "url(#paint0_radial_SecurityPodGroup24GradientRedIcon_15447_6629)"
19
+ }), /*#__PURE__*/React.createElement("path", {
20
+ fillRule: "evenodd",
21
+ clipRule: "evenodd",
22
+ d: "M8.436 7.622a.91.91 0 00-.91 0L5.406 8.847a.91.91 0 00-.455.787v2.45a.91.91 0 00.455.788l2.122 1.225a.91.91 0 00.909 0l2.122-1.225a.91.91 0 00.454-.788v-2.45a.91.91 0 00-.454-.787L8.436 7.622zm-.455.892l-2.03 1.173v2.345l2.03 1.173 2.031-1.173V9.687l-2.03-1.173z",
23
+ fill: "url(#paint1_radial_SecurityPodGroup24GradientRedIcon_15447_6629)"
24
+ }), /*#__PURE__*/React.createElement("path", {
25
+ fillRule: "evenodd",
26
+ clipRule: "evenodd",
27
+ d: "M22.001 13.176c.001-.336.002-.72-.296-1.053-.142-.16-.334-.29-.565-.412a10.328 10.328 0 00-.913-.41c-1.863-.76-2.116-.801-2.426-.801-.31 0-.563.042-2.427.801-.38.155-.68.287-.913.41-.23.123-.422.252-.565.412-.297.333-.296.717-.295 1.053v3.554c0 .798.096 1.351.396 1.825.277.437.709.767 1.234 1.168l.047.036c.583.446 1.08.751 1.491.947.402.192.752.294 1.032.294s.63-.102 1.031-.294c.411-.196.908-.501 1.492-.947l.047-.036c.525-.401.957-.731 1.234-1.168.3-.474.396-1.027.396-1.825v-3.554zm-1-.002v2.577h-3.2V20c-.063 0-.256-.031-.6-.196-.334-.16-.772-.424-1.316-.84l-.047-.036c-.564-.43-.834-.652-.996-.908-.149-.234-.241-.558-.241-1.29v-.98h3.2V11.5h.013c.072-.004.225-.01 2.036.727.375.153.635.269.82.367.189.1.261.163.29.195.01.012.018.021.026.06.013.063.016.143.015.325z",
28
+ fill: "url(#paint2_radial_SecurityPodGroup24GradientRedIcon_15447_6629)"
29
+ }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
30
+ id: "paint0_radial_SecurityPodGroup24GradientRedIcon_15447_6629",
31
+ cx: 0,
32
+ cy: 0,
33
+ r: 1,
34
+ gradientUnits: "userSpaceOnUse",
35
+ gradientTransform: "matrix(20.00128 -18 17.9004 19.8906 2 21)"
36
+ }, /*#__PURE__*/React.createElement("stop", {
37
+ stopColor: "#FF5C78"
38
+ }), /*#__PURE__*/React.createElement("stop", {
39
+ offset: 1,
40
+ stopColor: "#DC0000"
41
+ })), /*#__PURE__*/React.createElement("radialGradient", {
42
+ id: "paint1_radial_SecurityPodGroup24GradientRedIcon_15447_6629",
43
+ cx: 0,
44
+ cy: 0,
45
+ r: 1,
46
+ gradientUnits: "userSpaceOnUse",
47
+ gradientTransform: "matrix(20.00128 -18 17.9004 19.8906 2 21)"
48
+ }, /*#__PURE__*/React.createElement("stop", {
49
+ stopColor: "#FF5C78"
50
+ }), /*#__PURE__*/React.createElement("stop", {
51
+ offset: 1,
52
+ stopColor: "#DC0000"
53
+ })), /*#__PURE__*/React.createElement("radialGradient", {
54
+ id: "paint2_radial_SecurityPodGroup24GradientRedIcon_15447_6629",
55
+ cx: 0,
56
+ cy: 0,
57
+ r: 1,
58
+ gradientUnits: "userSpaceOnUse",
59
+ gradientTransform: "matrix(20.00128 -18 17.9004 19.8906 2 21)"
60
+ }, /*#__PURE__*/React.createElement("stop", {
61
+ stopColor: "#FF5C78"
62
+ }), /*#__PURE__*/React.createElement("stop", {
63
+ offset: 1,
64
+ stopColor: "#DC0000"
65
+ }))));
66
+ }
67
+ module.exports = SecurityPodGroup24GradientRedIcon;
@@ -0,0 +1,65 @@
1
+ const React = require("react");
2
+ function SecurityVmGroup16GradientBlueIcon({
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": "SecurityVmGroup16GradientBlueIcon",
13
+ "aria-labelledby": titleId
14
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
15
+ id: titleId
16
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
17
+ d: "M12.6 6V4.8a.4.4 0 00-.4-.4H8a2.4 2.4 0 01-1.92-.96l-.21-.28A.4.4 0 005.55 3H2.4a.4.4 0 00-.4.4v7.7c0 .22.18.4.4.4h6v1h-6A1.4 1.4 0 011 11.1V3.4A1.4 1.4 0 012.4 2h3.15a1.4 1.4 0 011.12.56l.21.28A1.4 1.4 0 008 3.4h4.2a1.4 1.4 0 011.4 1.4V6h-1z",
18
+ fill: "url(#paint0_radial_SecurityVmGroup16GradientBlueIcon_15329_77852)"
19
+ }), /*#__PURE__*/React.createElement("path", {
20
+ d: "M3 6.5a.5.5 0 01.5-.5h2a.5.5 0 010 1h-2a.5.5 0 01-.5-.5z",
21
+ fill: "url(#paint1_radial_SecurityVmGroup16GradientBlueIcon_15329_77852)"
22
+ }), /*#__PURE__*/React.createElement("path", {
23
+ fillRule: "evenodd",
24
+ clipRule: "evenodd",
25
+ d: "M10.519 13.172c.389.298.72.502.994.632.268.128.501.196.688.196.186 0 .42-.068.687-.196.274-.13.605-.334.995-.632l.031-.024c.35-.267.638-.487.823-.778.2-.316.264-.685.264-1.217V8.784c0-.224.001-.48-.197-.702a1.335 1.335 0 00-.377-.274 6.848 6.848 0 00-.609-.274C12.576 7.028 12.408 7 12.201 7c-.207 0-.376.028-1.618.534a6.86 6.86 0 00-.609.274 1.333 1.333 0 00-.376.274c-.199.222-.198.478-.198.702v2.369c0 .532.064.901.264 1.217.185.291.473.511.823.778l.032.024zm3.682-4.39V10.5h-2v2.7c-.001 0-.03-.001-.094-.019a1.659 1.659 0 01-.25-.099 5.035 5.035 0 01-.853-.545l-.031-.024c-.381-.291-.54-.424-.633-.571-.078-.124-.14-.31-.14-.789v-.652h2.001V7.8a.02.02 0 00.003 0c.02-.004.1-.02 1.313.475.248.101.417.177.534.239a1.116 1.116 0 01.144.09l.004.047c.002.034.002.072.002.131z",
26
+ fill: "url(#paint2_radial_SecurityVmGroup16GradientBlueIcon_15329_77852)"
27
+ }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
28
+ id: "paint0_radial_SecurityVmGroup16GradientBlueIcon_15329_77852",
29
+ cx: 0,
30
+ cy: 0,
31
+ r: 1,
32
+ gradientUnits: "userSpaceOnUse",
33
+ gradientTransform: "matrix(14.00082 -11.99998 11.8587 13.83598 1 14)"
34
+ }, /*#__PURE__*/React.createElement("stop", {
35
+ stopColor: "#5BCAFF"
36
+ }), /*#__PURE__*/React.createElement("stop", {
37
+ offset: 1,
38
+ stopColor: "#06F"
39
+ })), /*#__PURE__*/React.createElement("radialGradient", {
40
+ id: "paint1_radial_SecurityVmGroup16GradientBlueIcon_15329_77852",
41
+ cx: 0,
42
+ cy: 0,
43
+ r: 1,
44
+ gradientUnits: "userSpaceOnUse",
45
+ gradientTransform: "matrix(14.00082 -11.99998 11.8587 13.83598 1 14)"
46
+ }, /*#__PURE__*/React.createElement("stop", {
47
+ stopColor: "#5BCAFF"
48
+ }), /*#__PURE__*/React.createElement("stop", {
49
+ offset: 1,
50
+ stopColor: "#06F"
51
+ })), /*#__PURE__*/React.createElement("radialGradient", {
52
+ id: "paint2_radial_SecurityVmGroup16GradientBlueIcon_15329_77852",
53
+ cx: 0,
54
+ cy: 0,
55
+ r: 1,
56
+ gradientUnits: "userSpaceOnUse",
57
+ gradientTransform: "matrix(14.00082 -11.99998 11.8587 13.83598 1 14)"
58
+ }, /*#__PURE__*/React.createElement("stop", {
59
+ stopColor: "#5BCAFF"
60
+ }), /*#__PURE__*/React.createElement("stop", {
61
+ offset: 1,
62
+ stopColor: "#06F"
63
+ }))));
64
+ }
65
+ module.exports = SecurityVmGroup16GradientBlueIcon;