metal-icons 0.2.11 → 0.2.12
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/BoltIcon.d.ts +3 -0
- package/16/outline/BoltIcon.js +24 -0
- package/16/outline/esm/BoltIcon.d.ts +3 -0
- package/16/outline/esm/BoltIcon.js +24 -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/BoltIcon.d.ts +3 -0
- package/16/solid/BoltIcon.js +24 -0
- package/16/solid/esm/BoltIcon.d.ts +3 -0
- package/16/solid/esm/BoltIcon.js +24 -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/BoltIcon.d.ts +3 -0
- package/24/outline/BoltIcon.js +24 -0
- package/24/outline/esm/BoltIcon.d.ts +3 -0
- package/24/outline/esm/BoltIcon.js +24 -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/BoltIcon.d.ts +3 -0
- package/24/solid/BoltIcon.js +24 -0
- package/24/solid/esm/BoltIcon.d.ts +3 -0
- package/24/solid/esm/BoltIcon.js +24 -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/README.md +6 -0
- package/package.json +1 -1
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function BoltIcon({
|
|
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: "none",
|
|
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
|
+
fill: "currentColor",
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
d: "M9.375.078a.75.75 0 0 1 .402.82l-.889 4.418 5.485.908a.75.75 0 0 1 .44 1.236l-7.292 8.285a.75.75 0 0 1-1.298-.643l.889-4.418-5.485-.908a.75.75 0 0 1-.44-1.236L8.479.255a.75.75 0 0 1 .896-.177m-6.17 8.439 4.918.815a.75.75 0 0 1 .612.887l-.489 2.433 4.548-5.169-4.917-.814a.75.75 0 0 1-.612-.888l.489-2.432-4.548 5.168Z"
|
|
21
|
+
}));
|
|
22
|
+
}
|
|
23
|
+
const ForwardRef = React.forwardRef(BoltIcon);
|
|
24
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function BoltIcon({
|
|
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: "none",
|
|
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
|
+
fill: "currentColor",
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
d: "M9.375.078a.75.75 0 0 1 .402.82l-.889 4.418 5.485.908a.75.75 0 0 1 .44 1.236l-7.292 8.285a.75.75 0 0 1-1.298-.643l.889-4.418-5.485-.908a.75.75 0 0 1-.44-1.236L8.479.255a.75.75 0 0 1 .896-.177m-6.17 8.439 4.918.815a.75.75 0 0 1 .612.887l-.489 2.433 4.548-5.169-4.917-.814a.75.75 0 0 1-.612-.888l.489-2.432-4.548 5.168Z"
|
|
21
|
+
}));
|
|
22
|
+
}
|
|
23
|
+
const ForwardRef = React.forwardRef(BoltIcon);
|
|
24
|
+
export default ForwardRef;
|
|
@@ -17,6 +17,7 @@ export { default as AtIcon } from './AtIcon'
|
|
|
17
17
|
export { default as BatteryIcon } from './BatteryIcon'
|
|
18
18
|
export { default as BeakerIcon } from './BeakerIcon'
|
|
19
19
|
export { default as BellIcon } from './BellIcon'
|
|
20
|
+
export { default as BoltIcon } from './BoltIcon'
|
|
20
21
|
export { default as BookClosedIcon } from './BookClosedIcon'
|
|
21
22
|
export { default as BookOpenIcon } from './BookOpenIcon'
|
|
22
23
|
export { default as BookmarkPlusIcon } from './BookmarkPlusIcon'
|
package/16/outline/esm/index.js
CHANGED
|
@@ -17,6 +17,7 @@ export { default as AtIcon } from './AtIcon.js'
|
|
|
17
17
|
export { default as BatteryIcon } from './BatteryIcon.js'
|
|
18
18
|
export { default as BeakerIcon } from './BeakerIcon.js'
|
|
19
19
|
export { default as BellIcon } from './BellIcon.js'
|
|
20
|
+
export { default as BoltIcon } from './BoltIcon.js'
|
|
20
21
|
export { default as BookClosedIcon } from './BookClosedIcon.js'
|
|
21
22
|
export { default as BookOpenIcon } from './BookOpenIcon.js'
|
|
22
23
|
export { default as BookmarkPlusIcon } from './BookmarkPlusIcon.js'
|
package/16/outline/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export { default as AtIcon } from './AtIcon'
|
|
|
17
17
|
export { default as BatteryIcon } from './BatteryIcon'
|
|
18
18
|
export { default as BeakerIcon } from './BeakerIcon'
|
|
19
19
|
export { default as BellIcon } from './BellIcon'
|
|
20
|
+
export { default as BoltIcon } from './BoltIcon'
|
|
20
21
|
export { default as BookClosedIcon } from './BookClosedIcon'
|
|
21
22
|
export { default as BookOpenIcon } from './BookOpenIcon'
|
|
22
23
|
export { default as BookmarkPlusIcon } from './BookmarkPlusIcon'
|
package/16/outline/index.js
CHANGED
|
@@ -17,6 +17,7 @@ module.exports.AtIcon = require("./AtIcon.js")
|
|
|
17
17
|
module.exports.BatteryIcon = require("./BatteryIcon.js")
|
|
18
18
|
module.exports.BeakerIcon = require("./BeakerIcon.js")
|
|
19
19
|
module.exports.BellIcon = require("./BellIcon.js")
|
|
20
|
+
module.exports.BoltIcon = require("./BoltIcon.js")
|
|
20
21
|
module.exports.BookClosedIcon = require("./BookClosedIcon.js")
|
|
21
22
|
module.exports.BookOpenIcon = require("./BookOpenIcon.js")
|
|
22
23
|
module.exports.BookmarkPlusIcon = require("./BookmarkPlusIcon.js")
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function BoltIcon({
|
|
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: "none",
|
|
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
|
+
fill: "currentColor",
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
d: "M9.375.078a.75.75 0 0 1 .402.82l-.889 4.418 5.485.908a.75.75 0 0 1 .44 1.236l-7.292 8.285a.75.75 0 0 1-1.298-.643l.889-4.418-5.485-.908a.75.75 0 0 1-.44-1.236L8.479.255a.75.75 0 0 1 .896-.177"
|
|
21
|
+
}));
|
|
22
|
+
}
|
|
23
|
+
const ForwardRef = React.forwardRef(BoltIcon);
|
|
24
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function BoltIcon({
|
|
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: "none",
|
|
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
|
+
fill: "currentColor",
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
d: "M9.375.078a.75.75 0 0 1 .402.82l-.889 4.418 5.485.908a.75.75 0 0 1 .44 1.236l-7.292 8.285a.75.75 0 0 1-1.298-.643l.889-4.418-5.485-.908a.75.75 0 0 1-.44-1.236L8.479.255a.75.75 0 0 1 .896-.177"
|
|
21
|
+
}));
|
|
22
|
+
}
|
|
23
|
+
const ForwardRef = React.forwardRef(BoltIcon);
|
|
24
|
+
export default ForwardRef;
|
package/16/solid/esm/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export { default as AtIcon } from './AtIcon'
|
|
|
17
17
|
export { default as BatteryIcon } from './BatteryIcon'
|
|
18
18
|
export { default as BeakerIcon } from './BeakerIcon'
|
|
19
19
|
export { default as BellIcon } from './BellIcon'
|
|
20
|
+
export { default as BoltIcon } from './BoltIcon'
|
|
20
21
|
export { default as BookClosedIcon } from './BookClosedIcon'
|
|
21
22
|
export { default as BookOpenIcon } from './BookOpenIcon'
|
|
22
23
|
export { default as BookmarkPlusIcon } from './BookmarkPlusIcon'
|
package/16/solid/esm/index.js
CHANGED
|
@@ -17,6 +17,7 @@ export { default as AtIcon } from './AtIcon.js'
|
|
|
17
17
|
export { default as BatteryIcon } from './BatteryIcon.js'
|
|
18
18
|
export { default as BeakerIcon } from './BeakerIcon.js'
|
|
19
19
|
export { default as BellIcon } from './BellIcon.js'
|
|
20
|
+
export { default as BoltIcon } from './BoltIcon.js'
|
|
20
21
|
export { default as BookClosedIcon } from './BookClosedIcon.js'
|
|
21
22
|
export { default as BookOpenIcon } from './BookOpenIcon.js'
|
|
22
23
|
export { default as BookmarkPlusIcon } from './BookmarkPlusIcon.js'
|
package/16/solid/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export { default as AtIcon } from './AtIcon'
|
|
|
17
17
|
export { default as BatteryIcon } from './BatteryIcon'
|
|
18
18
|
export { default as BeakerIcon } from './BeakerIcon'
|
|
19
19
|
export { default as BellIcon } from './BellIcon'
|
|
20
|
+
export { default as BoltIcon } from './BoltIcon'
|
|
20
21
|
export { default as BookClosedIcon } from './BookClosedIcon'
|
|
21
22
|
export { default as BookOpenIcon } from './BookOpenIcon'
|
|
22
23
|
export { default as BookmarkPlusIcon } from './BookmarkPlusIcon'
|
package/16/solid/index.js
CHANGED
|
@@ -17,6 +17,7 @@ module.exports.AtIcon = require("./AtIcon.js")
|
|
|
17
17
|
module.exports.BatteryIcon = require("./BatteryIcon.js")
|
|
18
18
|
module.exports.BeakerIcon = require("./BeakerIcon.js")
|
|
19
19
|
module.exports.BellIcon = require("./BellIcon.js")
|
|
20
|
+
module.exports.BoltIcon = require("./BoltIcon.js")
|
|
20
21
|
module.exports.BookClosedIcon = require("./BookClosedIcon.js")
|
|
21
22
|
module.exports.BookOpenIcon = require("./BookOpenIcon.js")
|
|
22
23
|
module.exports.BookmarkPlusIcon = require("./BookmarkPlusIcon.js")
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function BoltIcon({
|
|
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: "none",
|
|
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
|
+
fill: "currentColor",
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
d: "M13.333 1.065a.75.75 0 0 1 .437.791l-.918 6.409 8.48.94a.75.75 0 0 1 .494 1.226l-10.278 12.3a.75.75 0 0 1-1.318-.587l.918-6.409-8.48-.94a.75.75 0 0 1-.494-1.226l10.278-12.3a.75.75 0 0 1 .881-.204M4.222 13.458l7.86.872a.75.75 0 0 1 .66.851l-.653 4.563 7.69-9.202-7.862-.872a.75.75 0 0 1-.66-.851l.654-4.563-7.69 9.203Z"
|
|
21
|
+
}));
|
|
22
|
+
}
|
|
23
|
+
const ForwardRef = React.forwardRef(BoltIcon);
|
|
24
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function BoltIcon({
|
|
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: "none",
|
|
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
|
+
fill: "currentColor",
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
d: "M13.333 1.065a.75.75 0 0 1 .437.791l-.918 6.409 8.48.94a.75.75 0 0 1 .494 1.226l-10.278 12.3a.75.75 0 0 1-1.318-.587l.918-6.409-8.48-.94a.75.75 0 0 1-.494-1.226l10.278-12.3a.75.75 0 0 1 .881-.204M4.222 13.458l7.86.872a.75.75 0 0 1 .66.851l-.653 4.563 7.69-9.202-7.862-.872a.75.75 0 0 1-.66-.851l.654-4.563-7.69 9.203Z"
|
|
21
|
+
}));
|
|
22
|
+
}
|
|
23
|
+
const ForwardRef = React.forwardRef(BoltIcon);
|
|
24
|
+
export default ForwardRef;
|
|
@@ -17,6 +17,7 @@ export { default as AtIcon } from './AtIcon'
|
|
|
17
17
|
export { default as BatteryIcon } from './BatteryIcon'
|
|
18
18
|
export { default as BeakerIcon } from './BeakerIcon'
|
|
19
19
|
export { default as BellIcon } from './BellIcon'
|
|
20
|
+
export { default as BoltIcon } from './BoltIcon'
|
|
20
21
|
export { default as BookClosedIcon } from './BookClosedIcon'
|
|
21
22
|
export { default as BookOpenIcon } from './BookOpenIcon'
|
|
22
23
|
export { default as BookmarkPlusIcon } from './BookmarkPlusIcon'
|
package/24/outline/esm/index.js
CHANGED
|
@@ -17,6 +17,7 @@ export { default as AtIcon } from './AtIcon.js'
|
|
|
17
17
|
export { default as BatteryIcon } from './BatteryIcon.js'
|
|
18
18
|
export { default as BeakerIcon } from './BeakerIcon.js'
|
|
19
19
|
export { default as BellIcon } from './BellIcon.js'
|
|
20
|
+
export { default as BoltIcon } from './BoltIcon.js'
|
|
20
21
|
export { default as BookClosedIcon } from './BookClosedIcon.js'
|
|
21
22
|
export { default as BookOpenIcon } from './BookOpenIcon.js'
|
|
22
23
|
export { default as BookmarkPlusIcon } from './BookmarkPlusIcon.js'
|
package/24/outline/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export { default as AtIcon } from './AtIcon'
|
|
|
17
17
|
export { default as BatteryIcon } from './BatteryIcon'
|
|
18
18
|
export { default as BeakerIcon } from './BeakerIcon'
|
|
19
19
|
export { default as BellIcon } from './BellIcon'
|
|
20
|
+
export { default as BoltIcon } from './BoltIcon'
|
|
20
21
|
export { default as BookClosedIcon } from './BookClosedIcon'
|
|
21
22
|
export { default as BookOpenIcon } from './BookOpenIcon'
|
|
22
23
|
export { default as BookmarkPlusIcon } from './BookmarkPlusIcon'
|
package/24/outline/index.js
CHANGED
|
@@ -17,6 +17,7 @@ module.exports.AtIcon = require("./AtIcon.js")
|
|
|
17
17
|
module.exports.BatteryIcon = require("./BatteryIcon.js")
|
|
18
18
|
module.exports.BeakerIcon = require("./BeakerIcon.js")
|
|
19
19
|
module.exports.BellIcon = require("./BellIcon.js")
|
|
20
|
+
module.exports.BoltIcon = require("./BoltIcon.js")
|
|
20
21
|
module.exports.BookClosedIcon = require("./BookClosedIcon.js")
|
|
21
22
|
module.exports.BookOpenIcon = require("./BookOpenIcon.js")
|
|
22
23
|
module.exports.BookmarkPlusIcon = require("./BookmarkPlusIcon.js")
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
const React = require("react");
|
|
2
|
+
function BoltIcon({
|
|
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: "none",
|
|
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
|
+
fill: "currentColor",
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
d: "M13.333 1.065a.75.75 0 0 1 .437.791l-.918 6.409 8.48.94a.75.75 0 0 1 .494 1.226l-10.278 12.3a.75.75 0 0 1-1.318-.587l.918-6.409-8.48-.94a.75.75 0 0 1-.494-1.226l10.278-12.3a.75.75 0 0 1 .881-.204"
|
|
21
|
+
}));
|
|
22
|
+
}
|
|
23
|
+
const ForwardRef = React.forwardRef(BoltIcon);
|
|
24
|
+
module.exports = ForwardRef;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
function BoltIcon({
|
|
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: "none",
|
|
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
|
+
fill: "currentColor",
|
|
19
|
+
fillRule: "evenodd",
|
|
20
|
+
d: "M13.333 1.065a.75.75 0 0 1 .437.791l-.918 6.409 8.48.94a.75.75 0 0 1 .494 1.226l-10.278 12.3a.75.75 0 0 1-1.318-.587l.918-6.409-8.48-.94a.75.75 0 0 1-.494-1.226l10.278-12.3a.75.75 0 0 1 .881-.204"
|
|
21
|
+
}));
|
|
22
|
+
}
|
|
23
|
+
const ForwardRef = React.forwardRef(BoltIcon);
|
|
24
|
+
export default ForwardRef;
|
package/24/solid/esm/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export { default as AtIcon } from './AtIcon'
|
|
|
17
17
|
export { default as BatteryIcon } from './BatteryIcon'
|
|
18
18
|
export { default as BeakerIcon } from './BeakerIcon'
|
|
19
19
|
export { default as BellIcon } from './BellIcon'
|
|
20
|
+
export { default as BoltIcon } from './BoltIcon'
|
|
20
21
|
export { default as BookClosedIcon } from './BookClosedIcon'
|
|
21
22
|
export { default as BookOpenIcon } from './BookOpenIcon'
|
|
22
23
|
export { default as BookmarkPlusIcon } from './BookmarkPlusIcon'
|
package/24/solid/esm/index.js
CHANGED
|
@@ -17,6 +17,7 @@ export { default as AtIcon } from './AtIcon.js'
|
|
|
17
17
|
export { default as BatteryIcon } from './BatteryIcon.js'
|
|
18
18
|
export { default as BeakerIcon } from './BeakerIcon.js'
|
|
19
19
|
export { default as BellIcon } from './BellIcon.js'
|
|
20
|
+
export { default as BoltIcon } from './BoltIcon.js'
|
|
20
21
|
export { default as BookClosedIcon } from './BookClosedIcon.js'
|
|
21
22
|
export { default as BookOpenIcon } from './BookOpenIcon.js'
|
|
22
23
|
export { default as BookmarkPlusIcon } from './BookmarkPlusIcon.js'
|
package/24/solid/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ export { default as AtIcon } from './AtIcon'
|
|
|
17
17
|
export { default as BatteryIcon } from './BatteryIcon'
|
|
18
18
|
export { default as BeakerIcon } from './BeakerIcon'
|
|
19
19
|
export { default as BellIcon } from './BellIcon'
|
|
20
|
+
export { default as BoltIcon } from './BoltIcon'
|
|
20
21
|
export { default as BookClosedIcon } from './BookClosedIcon'
|
|
21
22
|
export { default as BookOpenIcon } from './BookOpenIcon'
|
|
22
23
|
export { default as BookmarkPlusIcon } from './BookmarkPlusIcon'
|
package/24/solid/index.js
CHANGED
|
@@ -17,6 +17,7 @@ module.exports.AtIcon = require("./AtIcon.js")
|
|
|
17
17
|
module.exports.BatteryIcon = require("./BatteryIcon.js")
|
|
18
18
|
module.exports.BeakerIcon = require("./BeakerIcon.js")
|
|
19
19
|
module.exports.BellIcon = require("./BellIcon.js")
|
|
20
|
+
module.exports.BoltIcon = require("./BoltIcon.js")
|
|
20
21
|
module.exports.BookClosedIcon = require("./BookClosedIcon.js")
|
|
21
22
|
module.exports.BookOpenIcon = require("./BookOpenIcon.js")
|
|
22
23
|
module.exports.BookmarkPlusIcon = require("./BookmarkPlusIcon.js")
|
package/README.md
CHANGED