@cloudtower/icons-react 0.21.0
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/24/filled/AlertBellGradientBlueIcon.d.ts +3 -0
- package/24/filled/AlertBellGradientBlueIcon.js +49 -0
- package/24/filled/esm/AlertBellGradientBlueIcon.d.ts +3 -0
- package/24/filled/esm/AlertBellGradientBlueIcon.js +49 -0
- package/24/filled/esm/index.d.ts +1 -0
- package/24/filled/esm/index.js +1 -0
- package/24/filled/esm/package.json +4 -0
- package/24/filled/index.d.ts +1 -0
- package/24/filled/index.js +1 -0
- package/24/filled/package.json +4 -0
- package/24/outline/AlertBellGradientBlueIcon.d.ts +3 -0
- package/24/outline/AlertBellGradientBlueIcon.js +36 -0
- package/24/outline/esm/AlertBellGradientBlueIcon.d.ts +3 -0
- package/24/outline/esm/AlertBellGradientBlueIcon.js +36 -0
- package/24/outline/esm/index.d.ts +1 -0
- package/24/outline/esm/index.js +1 -0
- package/24/outline/esm/package.json +4 -0
- package/24/outline/index.d.ts +1 -0
- package/24/outline/index.js +1 -0
- package/24/outline/package.json +4 -0
- package/32/outline/AlertIcon.d.ts +3 -0
- package/32/outline/AlertIcon.js +42 -0
- package/32/outline/esm/AlertIcon.d.ts +3 -0
- package/32/outline/esm/AlertIcon.js +42 -0
- package/32/outline/esm/index.d.ts +1 -0
- package/32/outline/esm/index.js +1 -0
- package/32/outline/esm/package.json +4 -0
- package/32/outline/index.d.ts +1 -0
- package/32/outline/index.js +1 -0
- package/32/outline/package.json +4 -0
- package/index.esm.js +16 -0
- package/index.js +14 -0
- package/package.json +158 -0
@@ -0,0 +1,49 @@
|
|
1
|
+
const React = require("react");
|
2
|
+
function AlertBellGradientBlueIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}, svgRef) {
|
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
|
+
ref: svgRef,
|
13
|
+
"aria-labelledby": titleId
|
14
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
15
|
+
id: titleId
|
16
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
17
|
+
d: "M9.542 3.842a2.5 2.5 0 014.916 0c1.076.35 1.837.949 2.367 1.714.573.827.853 1.816 1.01 2.81.127.801.179 1.644.228 2.436l.034.547c.065.966.151 1.815.377 2.493.297.891.713 1.325 1.113 1.724l.06.06c.397.393.846.838.968 1.66.127.858-.47 1.407-1.058 1.575-.488.14-1.142.14-1.526.139H5.969c-.383 0-1.036 0-1.528-.144-.6-.166-1.176-.722-1.057-1.565.116-.827.568-1.274.967-1.668l.058-.058c.402-.399.82-.833 1.117-1.723.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.365 2.367-1.714z",
|
18
|
+
fill: "url(#paint0_radial)"
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
20
|
+
d: "M15 20a3 3 0 11-6 0h6z",
|
21
|
+
fill: "url(#paint1_radial)"
|
22
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
23
|
+
id: "paint0_radial",
|
24
|
+
cx: 0,
|
25
|
+
cy: 0,
|
26
|
+
r: 1,
|
27
|
+
gradientUnits: "userSpaceOnUse",
|
28
|
+
gradientTransform: "matrix(17.26374 -21.19997 20.76047 16.90583 3.368 23)"
|
29
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
30
|
+
stopColor: "#5BCAFF"
|
31
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
32
|
+
offset: 1,
|
33
|
+
stopColor: "#06F"
|
34
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
35
|
+
id: "paint1_radial",
|
36
|
+
cx: 0,
|
37
|
+
cy: 0,
|
38
|
+
r: 1,
|
39
|
+
gradientUnits: "userSpaceOnUse",
|
40
|
+
gradientTransform: "matrix(17.26374 -21.19997 20.76047 16.90583 3.368 23)"
|
41
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
42
|
+
stopColor: "#5BCAFF"
|
43
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
44
|
+
offset: 1,
|
45
|
+
stopColor: "#06F"
|
46
|
+
}))));
|
47
|
+
}
|
48
|
+
const ForwardRef = React.forwardRef(AlertBellGradientBlueIcon);
|
49
|
+
module.exports = ForwardRef;
|
@@ -0,0 +1,49 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function AlertBellGradientBlueIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}, svgRef) {
|
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
|
+
ref: svgRef,
|
13
|
+
"aria-labelledby": titleId
|
14
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
15
|
+
id: titleId
|
16
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
17
|
+
d: "M9.542 3.842a2.5 2.5 0 014.916 0c1.076.35 1.837.949 2.367 1.714.573.827.853 1.816 1.01 2.81.127.801.179 1.644.228 2.436l.034.547c.065.966.151 1.815.377 2.493.297.891.713 1.325 1.113 1.724l.06.06c.397.393.846.838.968 1.66.127.858-.47 1.407-1.058 1.575-.488.14-1.142.14-1.526.139H5.969c-.383 0-1.036 0-1.528-.144-.6-.166-1.176-.722-1.057-1.565.116-.827.568-1.274.967-1.668l.058-.058c.402-.399.82-.833 1.117-1.723.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.365 2.367-1.714z",
|
18
|
+
fill: "url(#paint0_radial)"
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
20
|
+
d: "M15 20a3 3 0 11-6 0h6z",
|
21
|
+
fill: "url(#paint1_radial)"
|
22
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
23
|
+
id: "paint0_radial",
|
24
|
+
cx: 0,
|
25
|
+
cy: 0,
|
26
|
+
r: 1,
|
27
|
+
gradientUnits: "userSpaceOnUse",
|
28
|
+
gradientTransform: "matrix(17.26374 -21.19997 20.76047 16.90583 3.368 23)"
|
29
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
30
|
+
stopColor: "#5BCAFF"
|
31
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
32
|
+
offset: 1,
|
33
|
+
stopColor: "#06F"
|
34
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
35
|
+
id: "paint1_radial",
|
36
|
+
cx: 0,
|
37
|
+
cy: 0,
|
38
|
+
r: 1,
|
39
|
+
gradientUnits: "userSpaceOnUse",
|
40
|
+
gradientTransform: "matrix(17.26374 -21.19997 20.76047 16.90583 3.368 23)"
|
41
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
42
|
+
stopColor: "#5BCAFF"
|
43
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
44
|
+
offset: 1,
|
45
|
+
stopColor: "#06F"
|
46
|
+
}))));
|
47
|
+
}
|
48
|
+
const ForwardRef = React.forwardRef(AlertBellGradientBlueIcon);
|
49
|
+
export default ForwardRef;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as AlertBellGradientBlueIcon } from './AlertBellGradientBlueIcon'
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as AlertBellGradientBlueIcon } from './AlertBellGradientBlueIcon.js'
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as AlertBellGradientBlueIcon } from './AlertBellGradientBlueIcon'
|
@@ -0,0 +1 @@
|
|
1
|
+
module.exports.AlertBellGradientBlueIcon = require("./AlertBellGradientBlueIcon.js")
|
@@ -0,0 +1,36 @@
|
|
1
|
+
const React = require("react");
|
2
|
+
function AlertBellGradientBlueIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}, svgRef) {
|
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
|
+
ref: svgRef,
|
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: "M12 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.436l-.034.547c-.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.933 19 5.586 19 5.97 19H9a3 3 0 106 0h3.03c.385 0 1.039 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.8zm-1.499 2.446a1.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.167 1.531.215 2.32l.036.574c.065.959.155 1.928.427 2.742.37 1.109.913 1.675 1.355 2.116l.014.013c.424.423.658.656.73 1.146a.36.36 0 01-.064.29.536.536 0 01-.278.176c-.339.097-.859.101-1.283.101H6c-.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.845-2.397.441-.636 1.098-1.142 2.13-1.412a.5.5 0 00.374-.467zM14 19h-4a2 2 0 104 0z",
|
20
|
+
fill: "url(#paint0_radial)"
|
21
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
22
|
+
id: "paint0_radial",
|
23
|
+
cx: 0,
|
24
|
+
cy: 0,
|
25
|
+
r: 1,
|
26
|
+
gradientUnits: "userSpaceOnUse",
|
27
|
+
gradientTransform: "matrix(17.2637 -20.1999 19.9533 17.05293 3.368 22)"
|
28
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
29
|
+
stopColor: "#5BCAFF"
|
30
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
31
|
+
offset: 1,
|
32
|
+
stopColor: "#06F"
|
33
|
+
}))));
|
34
|
+
}
|
35
|
+
const ForwardRef = React.forwardRef(AlertBellGradientBlueIcon);
|
36
|
+
module.exports = ForwardRef;
|
@@ -0,0 +1,36 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function AlertBellGradientBlueIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}, svgRef) {
|
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
|
+
ref: svgRef,
|
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: "M12 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.436l-.034.547c-.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.933 19 5.586 19 5.97 19H9a3 3 0 106 0h3.03c.385 0 1.039 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.8zm-1.499 2.446a1.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.167 1.531.215 2.32l.036.574c.065.959.155 1.928.427 2.742.37 1.109.913 1.675 1.355 2.116l.014.013c.424.423.658.656.73 1.146a.36.36 0 01-.064.29.536.536 0 01-.278.176c-.339.097-.859.101-1.283.101H6c-.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.845-2.397.441-.636 1.098-1.142 2.13-1.412a.5.5 0 00.374-.467zM14 19h-4a2 2 0 104 0z",
|
20
|
+
fill: "url(#paint0_radial)"
|
21
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
22
|
+
id: "paint0_radial",
|
23
|
+
cx: 0,
|
24
|
+
cy: 0,
|
25
|
+
r: 1,
|
26
|
+
gradientUnits: "userSpaceOnUse",
|
27
|
+
gradientTransform: "matrix(17.2637 -20.1999 19.9533 17.05293 3.368 22)"
|
28
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
29
|
+
stopColor: "#5BCAFF"
|
30
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
31
|
+
offset: 1,
|
32
|
+
stopColor: "#06F"
|
33
|
+
}))));
|
34
|
+
}
|
35
|
+
const ForwardRef = React.forwardRef(AlertBellGradientBlueIcon);
|
36
|
+
export default ForwardRef;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as AlertBellGradientBlueIcon } from './AlertBellGradientBlueIcon'
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as AlertBellGradientBlueIcon } from './AlertBellGradientBlueIcon.js'
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as AlertBellGradientBlueIcon } from './AlertBellGradientBlueIcon'
|
@@ -0,0 +1 @@
|
|
1
|
+
module.exports.AlertBellGradientBlueIcon = require("./AlertBellGradientBlueIcon.js")
|
@@ -0,0 +1,42 @@
|
|
1
|
+
const React = require("react");
|
2
|
+
function AlertIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}, svgRef) {
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
+
width: 32,
|
9
|
+
height: 32,
|
10
|
+
fill: "none",
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
12
|
+
ref: svgRef,
|
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: "M23.32 14.325c.011.194.023.382.035.564.068 1.015.154 1.78.344 2.35.237.711.543 1.032.917 1.405h.001l.061.061.024.024c.423.42 1.093 1.083 1.27 2.272.227 1.537-.881 2.481-1.817 2.749-.647.185-1.445.184-1.828.184H9.673c-.38 0-1.176 0-1.828-.19-.973-.272-2.03-1.232-1.819-2.731.169-1.199.846-1.867 1.271-2.287l.024-.024.06-.06c.377-.374.684-.694.92-1.403.19-.57.276-1.335.344-2.35.013-.183.024-.37.036-.564l.001-.022c.05-.813.106-1.73.246-2.614.175-1.103.5-2.303 1.22-3.342a5.537 5.537 0 012.464-1.977 3.607 3.607 0 016.777 0 5.537 5.537 0 012.464 1.977c.72 1.04 1.044 2.239 1.22 3.342.139.883.195 1.802.245 2.614l.002.02v.002zm.56 8.463c.613-.175 1.235-.747 1.102-1.64-.127-.859-.595-1.323-1.008-1.733l-.063-.062c-.417-.416-.85-.868-1.16-1.798-.236-.706-.326-1.592-.394-2.599l-.023-.361-.012-.208c-.051-.826-.105-1.706-.238-2.542-.164-1.035-.456-2.066-1.053-2.929-.553-.798-1.346-1.423-2.468-1.786a2.607 2.607 0 00-5.126 0c-1.121.363-1.915.988-2.467 1.786-.598.863-.89 1.894-1.054 2.93-.132.835-.186 1.714-.237 2.54-.012.193-.023.384-.036.57-.067 1.007-.158 1.893-.393 2.6-.09.27-.191.5-.3.7-.262.488-.567.801-.865 1.096l-.06.06c-.416.412-.887.877-1.008 1.74-.124.88.476 1.458 1.102 1.631.513.15 1.194.15 1.593.15h12.576c.4 0 1.083 0 1.592-.145zM16 28a3 3 0 01-3-3h6a3 3 0 01-3 3zm12.148-11.694a.509.509 0 01-.39-.086.472.472 0 01-.212-.343.598.598 0 01.117-.415 7.125 7.125 0 00.953-1.992 7.66 7.66 0 00.352-2.312 7.77 7.77 0 00-.344-2.313 6.734 6.734 0 00-.96-1.992.598.598 0 01-.118-.414.454.454 0 01.211-.344.51.51 0 01.39-.086c.141.026.256.104.345.235.479.635.848 1.385 1.109 2.25.265.859.398 1.747.398 2.664 0 .911-.133 1.797-.398 2.656a7.55 7.55 0 01-1.11 2.258.56.56 0 01-.343.234zM25.46 14.37a.495.495 0 01-.383-.078.542.542 0 01-.234-.368.602.602 0 01.133-.43c.224-.317.396-.674.515-1.07a4.23 4.23 0 00.188-1.265c0-.443-.063-.862-.188-1.258a3.58 3.58 0 00-.515-1.07.614.614 0 01-.133-.438.496.496 0 01.234-.36c.115-.077.243-.103.383-.077.14.02.255.096.344.226.281.375.503.823.664 1.344.162.516.242 1.06.242 1.633s-.08 1.12-.242 1.64c-.161.521-.383.966-.664 1.336a.522.522 0 01-.344.235zM4.242 16.22a.51.51 0 01-.39.086.56.56 0 01-.344-.234 7.548 7.548 0 01-1.11-2.258A8.944 8.944 0 012 11.158c0-.917.133-1.805.398-2.664.26-.865.63-1.615 1.11-2.25a.521.521 0 01.344-.235.51.51 0 01.39.086.454.454 0 01.211.344.598.598 0 01-.117.414 6.734 6.734 0 00-.961 1.992c-.23.74-.344 1.51-.344 2.313 0 .797.117 1.567.352 2.312.229.745.547 1.41.953 1.992a.598.598 0 01.117.415.472.472 0 01-.21.343zm2.68-1.93a.522.522 0 01-.727-.156 4.277 4.277 0 01-.664-1.336 5.51 5.51 0 01-.242-1.64c0-.573.08-1.117.242-1.633a4.38 4.38 0 01.664-1.344.493.493 0 01.344-.226c.14-.026.268 0 .383.078a.496.496 0 01.234.36.613.613 0 01-.133.437 3.58 3.58 0 00-.515 1.07 4.153 4.153 0 00-.188 1.258c0 .442.063.864.188 1.265.12.396.291.753.515 1.07.105.141.149.284.133.43a.542.542 0 01-.234.368z",
|
20
|
+
fill: "url(#paint0_radial_3067_10538)"
|
21
|
+
}), /*#__PURE__*/React.createElement("path", {
|
22
|
+
opacity: 0.4,
|
23
|
+
fillRule: "evenodd",
|
24
|
+
clipRule: "evenodd",
|
25
|
+
d: "M17.986 7.264A7.28 7.28 0 0016 7c-.723 0-1.401.096-1.986.264a2 2 0 013.972 0z",
|
26
|
+
fill: "#EB4ED7"
|
27
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
28
|
+
id: "paint0_radial_3067_10538",
|
29
|
+
cx: 0,
|
30
|
+
cy: 0,
|
31
|
+
r: 1,
|
32
|
+
gradientUnits: "userSpaceOnUse",
|
33
|
+
gradientTransform: "matrix(0 -24 14 0 16 28)"
|
34
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
35
|
+
stopColor: "#F480E5"
|
36
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
37
|
+
offset: 1,
|
38
|
+
stopColor: "#C701B1"
|
39
|
+
}))));
|
40
|
+
}
|
41
|
+
const ForwardRef = React.forwardRef(AlertIcon);
|
42
|
+
module.exports = ForwardRef;
|
@@ -0,0 +1,42 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function AlertIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}, svgRef) {
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
8
|
+
width: 32,
|
9
|
+
height: 32,
|
10
|
+
fill: "none",
|
11
|
+
xmlns: "http://www.w3.org/2000/svg",
|
12
|
+
ref: svgRef,
|
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: "M23.32 14.325c.011.194.023.382.035.564.068 1.015.154 1.78.344 2.35.237.711.543 1.032.917 1.405h.001l.061.061.024.024c.423.42 1.093 1.083 1.27 2.272.227 1.537-.881 2.481-1.817 2.749-.647.185-1.445.184-1.828.184H9.673c-.38 0-1.176 0-1.828-.19-.973-.272-2.03-1.232-1.819-2.731.169-1.199.846-1.867 1.271-2.287l.024-.024.06-.06c.377-.374.684-.694.92-1.403.19-.57.276-1.335.344-2.35.013-.183.024-.37.036-.564l.001-.022c.05-.813.106-1.73.246-2.614.175-1.103.5-2.303 1.22-3.342a5.537 5.537 0 012.464-1.977 3.607 3.607 0 016.777 0 5.537 5.537 0 012.464 1.977c.72 1.04 1.044 2.239 1.22 3.342.139.883.195 1.802.245 2.614l.002.02v.002zm.56 8.463c.613-.175 1.235-.747 1.102-1.64-.127-.859-.595-1.323-1.008-1.733l-.063-.062c-.417-.416-.85-.868-1.16-1.798-.236-.706-.326-1.592-.394-2.599l-.023-.361-.012-.208c-.051-.826-.105-1.706-.238-2.542-.164-1.035-.456-2.066-1.053-2.929-.553-.798-1.346-1.423-2.468-1.786a2.607 2.607 0 00-5.126 0c-1.121.363-1.915.988-2.467 1.786-.598.863-.89 1.894-1.054 2.93-.132.835-.186 1.714-.237 2.54-.012.193-.023.384-.036.57-.067 1.007-.158 1.893-.393 2.6-.09.27-.191.5-.3.7-.262.488-.567.801-.865 1.096l-.06.06c-.416.412-.887.877-1.008 1.74-.124.88.476 1.458 1.102 1.631.513.15 1.194.15 1.593.15h12.576c.4 0 1.083 0 1.592-.145zM16 28a3 3 0 01-3-3h6a3 3 0 01-3 3zm12.148-11.694a.509.509 0 01-.39-.086.472.472 0 01-.212-.343.598.598 0 01.117-.415 7.125 7.125 0 00.953-1.992 7.66 7.66 0 00.352-2.312 7.77 7.77 0 00-.344-2.313 6.734 6.734 0 00-.96-1.992.598.598 0 01-.118-.414.454.454 0 01.211-.344.51.51 0 01.39-.086c.141.026.256.104.345.235.479.635.848 1.385 1.109 2.25.265.859.398 1.747.398 2.664 0 .911-.133 1.797-.398 2.656a7.55 7.55 0 01-1.11 2.258.56.56 0 01-.343.234zM25.46 14.37a.495.495 0 01-.383-.078.542.542 0 01-.234-.368.602.602 0 01.133-.43c.224-.317.396-.674.515-1.07a4.23 4.23 0 00.188-1.265c0-.443-.063-.862-.188-1.258a3.58 3.58 0 00-.515-1.07.614.614 0 01-.133-.438.496.496 0 01.234-.36c.115-.077.243-.103.383-.077.14.02.255.096.344.226.281.375.503.823.664 1.344.162.516.242 1.06.242 1.633s-.08 1.12-.242 1.64c-.161.521-.383.966-.664 1.336a.522.522 0 01-.344.235zM4.242 16.22a.51.51 0 01-.39.086.56.56 0 01-.344-.234 7.548 7.548 0 01-1.11-2.258A8.944 8.944 0 012 11.158c0-.917.133-1.805.398-2.664.26-.865.63-1.615 1.11-2.25a.521.521 0 01.344-.235.51.51 0 01.39.086.454.454 0 01.211.344.598.598 0 01-.117.414 6.734 6.734 0 00-.961 1.992c-.23.74-.344 1.51-.344 2.313 0 .797.117 1.567.352 2.312.229.745.547 1.41.953 1.992a.598.598 0 01.117.415.472.472 0 01-.21.343zm2.68-1.93a.522.522 0 01-.727-.156 4.277 4.277 0 01-.664-1.336 5.51 5.51 0 01-.242-1.64c0-.573.08-1.117.242-1.633a4.38 4.38 0 01.664-1.344.493.493 0 01.344-.226c.14-.026.268 0 .383.078a.496.496 0 01.234.36.613.613 0 01-.133.437 3.58 3.58 0 00-.515 1.07 4.153 4.153 0 00-.188 1.258c0 .442.063.864.188 1.265.12.396.291.753.515 1.07.105.141.149.284.133.43a.542.542 0 01-.234.368z",
|
20
|
+
fill: "url(#paint0_radial_3067_10538)"
|
21
|
+
}), /*#__PURE__*/React.createElement("path", {
|
22
|
+
opacity: 0.4,
|
23
|
+
fillRule: "evenodd",
|
24
|
+
clipRule: "evenodd",
|
25
|
+
d: "M17.986 7.264A7.28 7.28 0 0016 7c-.723 0-1.401.096-1.986.264a2 2 0 013.972 0z",
|
26
|
+
fill: "#EB4ED7"
|
27
|
+
}), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("radialGradient", {
|
28
|
+
id: "paint0_radial_3067_10538",
|
29
|
+
cx: 0,
|
30
|
+
cy: 0,
|
31
|
+
r: 1,
|
32
|
+
gradientUnits: "userSpaceOnUse",
|
33
|
+
gradientTransform: "matrix(0 -24 14 0 16 28)"
|
34
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
35
|
+
stopColor: "#F480E5"
|
36
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
37
|
+
offset: 1,
|
38
|
+
stopColor: "#C701B1"
|
39
|
+
}))));
|
40
|
+
}
|
41
|
+
const ForwardRef = React.forwardRef(AlertIcon);
|
42
|
+
export default ForwardRef;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as AlertIcon } from './AlertIcon'
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as AlertIcon } from './AlertIcon.js'
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as AlertIcon } from './AlertIcon'
|
@@ -0,0 +1 @@
|
|
1
|
+
module.exports.AlertIcon = require("./AlertIcon.js")
|
package/index.esm.js
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
// The only reason this file exists is to appease Vite's optimizeDeps feature which requires a root-level import.
|
2
|
+
|
3
|
+
const defaultProxy = new Proxy(
|
4
|
+
{},
|
5
|
+
{
|
6
|
+
get: (_, property) => {
|
7
|
+
if (property === "__esModule") {
|
8
|
+
return {};
|
9
|
+
}
|
10
|
+
|
11
|
+
throw new Error("Some Import Error");
|
12
|
+
},
|
13
|
+
}
|
14
|
+
);
|
15
|
+
|
16
|
+
export default defaultProxy;
|
package/index.js
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
// The only reason this file exists is to appease Vite's optimizeDeps feature which requires a root-level import.
|
2
|
+
|
3
|
+
module.exports = new Proxy(
|
4
|
+
{},
|
5
|
+
{
|
6
|
+
get: (_, property) => {
|
7
|
+
if (property === "__esModule") {
|
8
|
+
return {};
|
9
|
+
}
|
10
|
+
|
11
|
+
throw new Error("Some Import Error");
|
12
|
+
},
|
13
|
+
}
|
14
|
+
);
|
package/package.json
ADDED
@@ -0,0 +1,158 @@
|
|
1
|
+
{
|
2
|
+
"name": "@cloudtower/icons-react",
|
3
|
+
"license": "MIT",
|
4
|
+
"version": "0.21.0",
|
5
|
+
"description": "",
|
6
|
+
"keywords": [],
|
7
|
+
"homepage": "https://github.com/tailwindlabs/heroicons#readme",
|
8
|
+
"repository": {
|
9
|
+
"type": "git",
|
10
|
+
"url": "https://github.com/tailwindlabs/heroicons.git"
|
11
|
+
},
|
12
|
+
"files": [
|
13
|
+
"20",
|
14
|
+
"24",
|
15
|
+
"32",
|
16
|
+
"index.esm.js",
|
17
|
+
"index.js"
|
18
|
+
],
|
19
|
+
"sideEffects": false,
|
20
|
+
"publishConfig": {
|
21
|
+
"access": "public"
|
22
|
+
},
|
23
|
+
"peerDependencies": {
|
24
|
+
"react": ">= 16"
|
25
|
+
},
|
26
|
+
"scripts": {
|
27
|
+
"lint": "node ./scripts/verify-names.js",
|
28
|
+
"pregenerate-icons": "rimraf ./{16,24,32}",
|
29
|
+
"generate-icons": "node scripts/build.js"
|
30
|
+
},
|
31
|
+
"devDependencies": {
|
32
|
+
"@cloudtower/icons": "0.21.0"
|
33
|
+
},
|
34
|
+
"exports": {
|
35
|
+
".": {
|
36
|
+
"import": "./index.esm.js",
|
37
|
+
"require": "./index.js"
|
38
|
+
},
|
39
|
+
"./package.json": {
|
40
|
+
"default": "./package.json"
|
41
|
+
},
|
42
|
+
"./16/outline": {
|
43
|
+
"types": "./16/outline/index.d.ts",
|
44
|
+
"import": "./16/outline/index.js",
|
45
|
+
"require": "./16/outline/index.js"
|
46
|
+
},
|
47
|
+
"./16/outline/*": {
|
48
|
+
"types": "./16/outline/*.d.ts",
|
49
|
+
"import": "./16/outline/esm/*.js",
|
50
|
+
"require": "./16/outline/*.js"
|
51
|
+
},
|
52
|
+
"./16/outline/*.js": {
|
53
|
+
"types": "./16/outline/*.d.ts",
|
54
|
+
"import": "./16/outline/esm/*.js",
|
55
|
+
"require": "./16/outline/*.js"
|
56
|
+
},
|
57
|
+
"./16/outline/esm/*": {
|
58
|
+
"types": "./16/outline/*.d.ts",
|
59
|
+
"import": "./16/outline/esm/*.js"
|
60
|
+
},
|
61
|
+
"./16/outline/esm/*.js": {
|
62
|
+
"types": "./16/outline/*.d.ts",
|
63
|
+
"import": "./16/outline/esm/*.js"
|
64
|
+
},
|
65
|
+
"./24/outline": {
|
66
|
+
"types": "./24/outline/index.d.ts",
|
67
|
+
"import": "./24/outline/index.js",
|
68
|
+
"require": "./24/outline/index.js"
|
69
|
+
},
|
70
|
+
"./24/outline/*": {
|
71
|
+
"types": "./24/outline/*.d.ts",
|
72
|
+
"import": "./24/outline/esm/*.js",
|
73
|
+
"require": "./24/outline/*.js"
|
74
|
+
},
|
75
|
+
"./24/outline/*.js": {
|
76
|
+
"types": "./24/outline/*.d.ts",
|
77
|
+
"import": "./24/outline/esm/*.js",
|
78
|
+
"require": "./24/outline/*.js"
|
79
|
+
},
|
80
|
+
"./24/outline/esm/*": {
|
81
|
+
"types": "./24/outline/*.d.ts",
|
82
|
+
"import": "./24/outline/esm/*.js"
|
83
|
+
},
|
84
|
+
"./24/outline/esm/*.js": {
|
85
|
+
"types": "./24/outline/*.d.ts",
|
86
|
+
"import": "./24/outline/esm/*.js"
|
87
|
+
},
|
88
|
+
"./32/outline": {
|
89
|
+
"types": "./32/outline/index.d.ts",
|
90
|
+
"import": "./32/outline/index.js",
|
91
|
+
"require": "./32/outline/index.js"
|
92
|
+
},
|
93
|
+
"./32/outline/*": {
|
94
|
+
"types": "./32/outline/*.d.ts",
|
95
|
+
"import": "./32/outline/esm/*.js",
|
96
|
+
"require": "./32/outline/*.js"
|
97
|
+
},
|
98
|
+
"./32/outline/*.js": {
|
99
|
+
"types": "./32/outline/*.d.ts",
|
100
|
+
"import": "./32/outline/esm/*.js",
|
101
|
+
"require": "./32/outline/*.js"
|
102
|
+
},
|
103
|
+
"./32/outline/esm/*": {
|
104
|
+
"types": "./32/outline/*.d.ts",
|
105
|
+
"import": "./32/outline/esm/*.js"
|
106
|
+
},
|
107
|
+
"./32/outline/esm/*.js": {
|
108
|
+
"types": "./32/outline/*.d.ts",
|
109
|
+
"import": "./32/outline/esm/*.js"
|
110
|
+
},
|
111
|
+
"./16/filled": {
|
112
|
+
"types": "./16/filled/index.d.ts",
|
113
|
+
"import": "./16/filled/index.js",
|
114
|
+
"require": "./16/filled/index.js"
|
115
|
+
},
|
116
|
+
"./16/filled/*": {
|
117
|
+
"types": "./16/filled/*.d.ts",
|
118
|
+
"import": "./16/filled/esm/*.js",
|
119
|
+
"require": "./16/filled/*.js"
|
120
|
+
},
|
121
|
+
"./16/filled/*.js": {
|
122
|
+
"types": "./16/filled/*.d.ts",
|
123
|
+
"import": "./16/filled/esm/*.js",
|
124
|
+
"require": "./16/filled/*.js"
|
125
|
+
},
|
126
|
+
"./16/filled/esm/*": {
|
127
|
+
"types": "./16/filled/*.d.ts",
|
128
|
+
"import": "./16/filled/esm/*.js"
|
129
|
+
},
|
130
|
+
"./16/filled/esm/*.js": {
|
131
|
+
"types": "./16/filled/*.d.ts",
|
132
|
+
"import": "./16/filled/esm/*.js"
|
133
|
+
},
|
134
|
+
"./24/filled": {
|
135
|
+
"types": "./24/filled/index.d.ts",
|
136
|
+
"import": "./24/filled/index.js",
|
137
|
+
"require": "./24/filled/index.js"
|
138
|
+
},
|
139
|
+
"./24/filled/*": {
|
140
|
+
"types": "./24/filled/*.d.ts",
|
141
|
+
"import": "./24/filled/esm/*.js",
|
142
|
+
"require": "./24/filled/*.js"
|
143
|
+
},
|
144
|
+
"./24/filled/*.js": {
|
145
|
+
"types": "./24/filled/*.d.ts",
|
146
|
+
"import": "./24/filled/esm/*.js",
|
147
|
+
"require": "./24/filled/*.js"
|
148
|
+
},
|
149
|
+
"./24/filled/esm/*": {
|
150
|
+
"types": "./24/filled/*.d.ts",
|
151
|
+
"import": "./24/filled/esm/*.js"
|
152
|
+
},
|
153
|
+
"./24/filled/esm/*.js": {
|
154
|
+
"types": "./24/filled/*.d.ts",
|
155
|
+
"import": "./24/filled/esm/*.js"
|
156
|
+
}
|
157
|
+
}
|
158
|
+
}
|