metal-icons 0.8.0 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/16/outline/CircleIcon.d.ts +3 -0
- package/16/outline/CircleIcon.js +23 -0
- package/16/outline/esm/CircleIcon.d.ts +3 -0
- package/16/outline/esm/CircleIcon.js +23 -0
- package/16/outline/esm/index.d.ts +1 -0
- package/16/outline/esm/index.js +1 -0
- package/16/outline/index.d.ts +1 -0
- package/16/outline/index.js +1 -0
- package/16/solid/CircleIcon.d.ts +3 -0
- package/16/solid/CircleIcon.js +23 -0
- package/16/solid/esm/CircleIcon.d.ts +3 -0
- package/16/solid/esm/CircleIcon.js +23 -0
- package/16/solid/esm/index.d.ts +1 -0
- package/16/solid/esm/index.js +1 -0
- package/16/solid/index.d.ts +1 -0
- package/16/solid/index.js +1 -0
- package/24/outline/CircleIcon.d.ts +3 -0
- package/24/outline/CircleIcon.js +23 -0
- package/24/outline/esm/CircleIcon.d.ts +3 -0
- package/24/outline/esm/CircleIcon.js +23 -0
- package/24/outline/esm/index.d.ts +1 -0
- package/24/outline/esm/index.js +1 -0
- package/24/outline/index.d.ts +1 -0
- package/24/outline/index.js +1 -0
- package/24/solid/CircleIcon.d.ts +3 -0
- package/24/solid/CircleIcon.js +23 -0
- package/24/solid/esm/CircleIcon.d.ts +3 -0
- package/24/solid/esm/CircleIcon.js +23 -0
- package/24/solid/esm/index.d.ts +1 -0
- package/24/solid/esm/index.js +1 -0
- package/24/solid/index.d.ts +1 -0
- package/24/solid/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function CircleIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 16 16",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fillRule: "evenodd",
|
|
19
|
+
d: "M3.404 3.404a6.5 6.5 0 1 0 9.192 9.192 6.5 6.5 0 0 0-9.192-9.192M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8"
|
|
20
|
+
}));
|
|
21
|
+
}
|
|
22
|
+
const ForwardRef = React.forwardRef(CircleIcon);
|
|
23
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function CircleIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 16 16",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fillRule: "evenodd",
|
|
19
|
+
d: "M3.404 3.404a6.5 6.5 0 1 0 9.192 9.192 6.5 6.5 0 0 0-9.192-9.192M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8"
|
|
20
|
+
}));
|
|
21
|
+
}
|
|
22
|
+
const ForwardRef = React.forwardRef(CircleIcon);
|
|
23
|
+
export default ForwardRef;
|
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon'
|
package/16/outline/esm/index.js
CHANGED
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon.js'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon.js'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon.js'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon.js'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon.js'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon.js'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon.js'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon.js'
|
package/16/outline/index.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon'
|
package/16/outline/index.js
CHANGED
|
@@ -65,6 +65,7 @@ module.exports.CircleCloseIcon = require("./CircleCloseIcon.js")
|
|
|
65
65
|
module.exports.CircleHelpIcon = require("./CircleHelpIcon.js")
|
|
66
66
|
module.exports.CircleInfoIcon = require("./CircleInfoIcon.js")
|
|
67
67
|
module.exports.CircleMinusIcon = require("./CircleMinusIcon.js")
|
|
68
|
+
module.exports.CircleIcon = require("./CircleIcon.js")
|
|
68
69
|
module.exports.ClipboardCheckIcon = require("./ClipboardCheckIcon.js")
|
|
69
70
|
module.exports.ClipboardXIcon = require("./ClipboardXIcon.js")
|
|
70
71
|
module.exports.ClipboardIcon = require("./ClipboardIcon.js")
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function CircleIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 16 16",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fillRule: "evenodd",
|
|
19
|
+
d: "M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8"
|
|
20
|
+
}));
|
|
21
|
+
}
|
|
22
|
+
const ForwardRef = React.forwardRef(CircleIcon);
|
|
23
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function CircleIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 16 16",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fillRule: "evenodd",
|
|
19
|
+
d: "M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8"
|
|
20
|
+
}));
|
|
21
|
+
}
|
|
22
|
+
const ForwardRef = React.forwardRef(CircleIcon);
|
|
23
|
+
export default ForwardRef;
|
package/16/solid/esm/index.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon'
|
package/16/solid/esm/index.js
CHANGED
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon.js'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon.js'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon.js'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon.js'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon.js'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon.js'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon.js'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon.js'
|
package/16/solid/index.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon'
|
package/16/solid/index.js
CHANGED
|
@@ -65,6 +65,7 @@ module.exports.CircleCloseIcon = require("./CircleCloseIcon.js")
|
|
|
65
65
|
module.exports.CircleHelpIcon = require("./CircleHelpIcon.js")
|
|
66
66
|
module.exports.CircleInfoIcon = require("./CircleInfoIcon.js")
|
|
67
67
|
module.exports.CircleMinusIcon = require("./CircleMinusIcon.js")
|
|
68
|
+
module.exports.CircleIcon = require("./CircleIcon.js")
|
|
68
69
|
module.exports.ClipboardCheckIcon = require("./ClipboardCheckIcon.js")
|
|
69
70
|
module.exports.ClipboardXIcon = require("./ClipboardXIcon.js")
|
|
70
71
|
module.exports.ClipboardIcon = require("./ClipboardIcon.js")
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function CircleIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 24,
|
|
10
|
+
height: 24,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fillRule: "evenodd",
|
|
19
|
+
d: "M12 2.5a9.5 9.5 0 1 0 0 19 9.5 9.5 0 0 0 0-19M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12"
|
|
20
|
+
}));
|
|
21
|
+
}
|
|
22
|
+
const ForwardRef = React.forwardRef(CircleIcon);
|
|
23
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function CircleIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 24,
|
|
10
|
+
height: 24,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fillRule: "evenodd",
|
|
19
|
+
d: "M12 2.5a9.5 9.5 0 1 0 0 19 9.5 9.5 0 0 0 0-19M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12"
|
|
20
|
+
}));
|
|
21
|
+
}
|
|
22
|
+
const ForwardRef = React.forwardRef(CircleIcon);
|
|
23
|
+
export default ForwardRef;
|
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon'
|
package/24/outline/esm/index.js
CHANGED
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon.js'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon.js'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon.js'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon.js'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon.js'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon.js'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon.js'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon.js'
|
package/24/outline/index.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon'
|
package/24/outline/index.js
CHANGED
|
@@ -65,6 +65,7 @@ module.exports.CircleCloseIcon = require("./CircleCloseIcon.js")
|
|
|
65
65
|
module.exports.CircleHelpIcon = require("./CircleHelpIcon.js")
|
|
66
66
|
module.exports.CircleInfoIcon = require("./CircleInfoIcon.js")
|
|
67
67
|
module.exports.CircleMinusIcon = require("./CircleMinusIcon.js")
|
|
68
|
+
module.exports.CircleIcon = require("./CircleIcon.js")
|
|
68
69
|
module.exports.ClipboardCheckIcon = require("./ClipboardCheckIcon.js")
|
|
69
70
|
module.exports.ClipboardXIcon = require("./ClipboardXIcon.js")
|
|
70
71
|
module.exports.ClipboardIcon = require("./ClipboardIcon.js")
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function CircleIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 24,
|
|
10
|
+
height: 24,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fillRule: "evenodd",
|
|
19
|
+
d: "M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12"
|
|
20
|
+
}));
|
|
21
|
+
}
|
|
22
|
+
const ForwardRef = React.forwardRef(CircleIcon);
|
|
23
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function CircleIcon({
|
|
3
|
+
title,
|
|
4
|
+
titleId,
|
|
5
|
+
...props
|
|
6
|
+
}, svgRef) {
|
|
7
|
+
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
8
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
9
|
+
width: 24,
|
|
10
|
+
height: 24,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
viewBox: "0 0 24 24",
|
|
13
|
+
ref: svgRef,
|
|
14
|
+
"aria-labelledby": titleId
|
|
15
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
16
|
+
id: titleId
|
|
17
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
fillRule: "evenodd",
|
|
19
|
+
d: "M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12"
|
|
20
|
+
}));
|
|
21
|
+
}
|
|
22
|
+
const ForwardRef = React.forwardRef(CircleIcon);
|
|
23
|
+
export default ForwardRef;
|
package/24/solid/esm/index.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon'
|
package/24/solid/esm/index.js
CHANGED
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon.js'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon.js'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon.js'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon.js'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon.js'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon.js'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon.js'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon.js'
|
package/24/solid/index.d.ts
CHANGED
|
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
|
|
|
65
65
|
export { default as CircleHelpIcon } from './CircleHelpIcon'
|
|
66
66
|
export { default as CircleInfoIcon } from './CircleInfoIcon'
|
|
67
67
|
export { default as CircleMinusIcon } from './CircleMinusIcon'
|
|
68
|
+
export { default as CircleIcon } from './CircleIcon'
|
|
68
69
|
export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
|
|
69
70
|
export { default as ClipboardXIcon } from './ClipboardXIcon'
|
|
70
71
|
export { default as ClipboardIcon } from './ClipboardIcon'
|
package/24/solid/index.js
CHANGED
|
@@ -65,6 +65,7 @@ module.exports.CircleCloseIcon = require("./CircleCloseIcon.js")
|
|
|
65
65
|
module.exports.CircleHelpIcon = require("./CircleHelpIcon.js")
|
|
66
66
|
module.exports.CircleInfoIcon = require("./CircleInfoIcon.js")
|
|
67
67
|
module.exports.CircleMinusIcon = require("./CircleMinusIcon.js")
|
|
68
|
+
module.exports.CircleIcon = require("./CircleIcon.js")
|
|
68
69
|
module.exports.ClipboardCheckIcon = require("./ClipboardCheckIcon.js")
|
|
69
70
|
module.exports.ClipboardXIcon = require("./ClipboardXIcon.js")
|
|
70
71
|
module.exports.ClipboardIcon = require("./ClipboardIcon.js")
|