@cloudtower/icons-react 0.21.0 → 0.21.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.
- package/16/filled/PlusCircleBlueIcon.d.ts +4 -0
- package/16/filled/PlusCircleBlueIcon.js +22 -0
- package/16/filled/esm/PlusCircleBlueIcon.d.ts +4 -0
- package/16/filled/esm/PlusCircleBlueIcon.js +22 -0
- package/16/filled/esm/index.d.ts +1 -0
- package/16/filled/esm/index.js +1 -0
- package/16/filled/esm/package.json +4 -0
- package/16/filled/index.d.ts +1 -0
- package/16/filled/index.js +1 -0
- package/16/filled/package.json +4 -0
- package/16/outline/PlusCircleBlueIcon.d.ts +4 -0
- package/16/outline/PlusCircleBlueIcon.js +27 -0
- package/16/outline/esm/PlusCircleBlueIcon.d.ts +4 -0
- package/16/outline/esm/PlusCircleBlueIcon.js +27 -0
- package/16/outline/esm/index.d.ts +1 -0
- package/16/outline/esm/index.js +1 -0
- package/16/outline/esm/package.json +4 -0
- package/16/outline/index.d.ts +1 -0
- package/16/outline/index.js +1 -0
- package/16/outline/package.json +4 -0
- package/24/filled/AlertBellGradientBlueIcon.d.ts +1 -0
- package/24/filled/AlertBellGradientBlueIcon.js +1 -1
- package/24/filled/esm/AlertBellGradientBlueIcon.d.ts +1 -0
- package/24/filled/esm/AlertBellGradientBlueIcon.js +1 -1
- package/24/filled/esm/index.d.ts +1 -1
- package/24/filled/esm/index.js +1 -1
- package/24/filled/esm/package.json +1 -1
- package/24/filled/index.d.ts +1 -1
- package/24/filled/index.js +1 -1
- package/24/filled/package.json +1 -1
- package/24/outline/AlertBellGradientBlueIcon.d.ts +1 -0
- package/24/outline/AlertBellGradientBlueIcon.js +1 -1
- package/24/outline/esm/AlertBellGradientBlueIcon.d.ts +1 -0
- package/24/outline/esm/AlertBellGradientBlueIcon.js +1 -1
- package/24/outline/esm/index.d.ts +1 -1
- package/24/outline/esm/index.js +1 -1
- package/24/outline/esm/package.json +1 -1
- package/24/outline/index.d.ts +1 -1
- package/24/outline/index.js +1 -1
- package/24/outline/package.json +1 -1
- package/32/outline/AlertIcon.d.ts +1 -0
- package/32/outline/AlertIcon.js +1 -1
- package/32/outline/esm/AlertIcon.d.ts +1 -0
- package/32/outline/esm/AlertIcon.js +1 -1
- package/32/outline/esm/index.d.ts +1 -1
- package/32/outline/esm/index.js +1 -1
- package/32/outline/esm/package.json +1 -1
- package/32/outline/index.d.ts +1 -1
- package/32/outline/index.js +1 -1
- package/32/outline/package.json +1 -1
- package/package.json +5 -4
@@ -0,0 +1,22 @@
|
|
1
|
+
const React = require("react");
|
2
|
+
function PlusCircleBlueIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}, svgRef) {
|
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
|
+
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 4a1 1 0 00-2 0v3H4a1 1 0 000 2h3v3a1 1 0 102 0V9h3a1 1 0 100-2H9V4z",
|
18
|
+
fill: "#0080FF"
|
19
|
+
}));
|
20
|
+
}
|
21
|
+
const ForwardRef = React.forwardRef(PlusCircleBlueIcon);
|
22
|
+
module.exports = ForwardRef;
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function PlusCircleBlueIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}, svgRef) {
|
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
|
+
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 4a1 1 0 00-2 0v3H4a1 1 0 000 2h3v3a1 1 0 102 0V9h3a1 1 0 100-2H9V4z",
|
18
|
+
fill: "#0080FF"
|
19
|
+
}));
|
20
|
+
}
|
21
|
+
const ForwardRef = React.forwardRef(PlusCircleBlueIcon);
|
22
|
+
export default ForwardRef;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as PlusCircleBlueIcon } from './PlusCircleBlueIcon'
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as PlusCircleBlueIcon } from './PlusCircleBlueIcon.js'
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as PlusCircleBlueIcon } from './PlusCircleBlueIcon'
|
@@ -0,0 +1 @@
|
|
1
|
+
module.exports.PlusCircleBlueIcon = require("./PlusCircleBlueIcon.js")
|
@@ -0,0 +1,27 @@
|
|
1
|
+
const React = require("react");
|
2
|
+
function PlusCircleBlueIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}, svgRef) {
|
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
|
+
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: "M4.5 8a.5.5 0 01.5-.5h2.5V5a.5.5 0 011 0v2.5H11a.5.5 0 010 1H8.5V11a.5.5 0 01-1 0V8.5H5a.5.5 0 01-.5-.5z",
|
18
|
+
fill: "#0080FF"
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
20
|
+
fillRule: "evenodd",
|
21
|
+
clipRule: "evenodd",
|
22
|
+
d: "M8 15A7 7 0 108 1a7 7 0 000 14zm0-1A6 6 0 108 2a6 6 0 000 12z",
|
23
|
+
fill: "#0080FF"
|
24
|
+
}));
|
25
|
+
}
|
26
|
+
const ForwardRef = React.forwardRef(PlusCircleBlueIcon);
|
27
|
+
module.exports = ForwardRef;
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import * as React from "react";
|
2
|
+
function PlusCircleBlueIcon({
|
3
|
+
title,
|
4
|
+
titleId,
|
5
|
+
...props
|
6
|
+
}, svgRef) {
|
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
|
+
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: "M4.5 8a.5.5 0 01.5-.5h2.5V5a.5.5 0 011 0v2.5H11a.5.5 0 010 1H8.5V11a.5.5 0 01-1 0V8.5H5a.5.5 0 01-.5-.5z",
|
18
|
+
fill: "#0080FF"
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
20
|
+
fillRule: "evenodd",
|
21
|
+
clipRule: "evenodd",
|
22
|
+
d: "M8 15A7 7 0 108 1a7 7 0 000 14zm0-1A6 6 0 108 2a6 6 0 000 12z",
|
23
|
+
fill: "#0080FF"
|
24
|
+
}));
|
25
|
+
}
|
26
|
+
const ForwardRef = React.forwardRef(PlusCircleBlueIcon);
|
27
|
+
export default ForwardRef;
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as PlusCircleBlueIcon } from './PlusCircleBlueIcon'
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as PlusCircleBlueIcon } from './PlusCircleBlueIcon.js'
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default as PlusCircleBlueIcon } from './PlusCircleBlueIcon'
|
@@ -0,0 +1 @@
|
|
1
|
+
module.exports.PlusCircleBlueIcon = require("./PlusCircleBlueIcon.js")
|
package/24/filled/esm/index.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export { default as AlertBellGradientBlueIcon } from './AlertBellGradientBlueIcon'
|
1
|
+
export { default as AlertBellGradientBlueIcon } from './AlertBellGradientBlueIcon'
|
package/24/filled/esm/index.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export { default as AlertBellGradientBlueIcon } from './AlertBellGradientBlueIcon.js'
|
1
|
+
export { default as AlertBellGradientBlueIcon } from './AlertBellGradientBlueIcon.js'
|
package/24/filled/index.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export { default as AlertBellGradientBlueIcon } from './AlertBellGradientBlueIcon'
|
1
|
+
export { default as AlertBellGradientBlueIcon } from './AlertBellGradientBlueIcon'
|
package/24/filled/index.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
module.exports.AlertBellGradientBlueIcon = require("./AlertBellGradientBlueIcon.js")
|
1
|
+
module.exports.AlertBellGradientBlueIcon = require("./AlertBellGradientBlueIcon.js")
|
package/24/filled/package.json
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export { default as AlertBellGradientBlueIcon } from './AlertBellGradientBlueIcon'
|
1
|
+
export { default as AlertBellGradientBlueIcon } from './AlertBellGradientBlueIcon'
|
package/24/outline/esm/index.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export { default as AlertBellGradientBlueIcon } from './AlertBellGradientBlueIcon.js'
|
1
|
+
export { default as AlertBellGradientBlueIcon } from './AlertBellGradientBlueIcon.js'
|
package/24/outline/index.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export { default as AlertBellGradientBlueIcon } from './AlertBellGradientBlueIcon'
|
1
|
+
export { default as AlertBellGradientBlueIcon } from './AlertBellGradientBlueIcon'
|
package/24/outline/index.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
module.exports.AlertBellGradientBlueIcon = require("./AlertBellGradientBlueIcon.js")
|
1
|
+
module.exports.AlertBellGradientBlueIcon = require("./AlertBellGradientBlueIcon.js")
|
package/24/outline/package.json
CHANGED
package/32/outline/AlertIcon.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export { default as AlertIcon } from './AlertIcon'
|
1
|
+
export { default as AlertIcon } from './AlertIcon'
|
package/32/outline/esm/index.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export { default as AlertIcon } from './AlertIcon.js'
|
1
|
+
export { default as AlertIcon } from './AlertIcon.js'
|
package/32/outline/index.d.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export { default as AlertIcon } from './AlertIcon'
|
1
|
+
export { default as AlertIcon } from './AlertIcon'
|
package/32/outline/index.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
module.exports.AlertIcon = require("./AlertIcon.js")
|
1
|
+
module.exports.AlertIcon = require("./AlertIcon.js")
|
package/32/outline/package.json
CHANGED
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@cloudtower/icons-react",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "0.21.
|
4
|
+
"version": "0.21.2",
|
5
5
|
"description": "",
|
6
6
|
"keywords": [],
|
7
7
|
"homepage": "https://github.com/tailwindlabs/heroicons#readme",
|
@@ -10,7 +10,7 @@
|
|
10
10
|
"url": "https://github.com/tailwindlabs/heroicons.git"
|
11
11
|
},
|
12
12
|
"files": [
|
13
|
-
"
|
13
|
+
"16",
|
14
14
|
"24",
|
15
15
|
"32",
|
16
16
|
"index.esm.js",
|
@@ -29,7 +29,7 @@
|
|
29
29
|
"generate-icons": "node scripts/build.js"
|
30
30
|
},
|
31
31
|
"devDependencies": {
|
32
|
-
"@cloudtower/icons": "0.21.
|
32
|
+
"@cloudtower/icons": "0.21.2"
|
33
33
|
},
|
34
34
|
"exports": {
|
35
35
|
".": {
|
@@ -154,5 +154,6 @@
|
|
154
154
|
"types": "./24/filled/*.d.ts",
|
155
155
|
"import": "./24/filled/esm/*.js"
|
156
156
|
}
|
157
|
-
}
|
157
|
+
},
|
158
|
+
"gitHead": "5f01a6ca045ece9819cf8724700a15d588fc99dc"
|
158
159
|
}
|