metal-icons 0.2.11 → 0.2.13

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 (50) hide show
  1. package/16/outline/BoltIcon.d.ts +3 -0
  2. package/16/outline/BoltIcon.js +24 -0
  3. package/16/outline/SidebarIcon.d.ts +3 -0
  4. package/16/outline/SidebarIcon.js +24 -0
  5. package/16/outline/esm/BoltIcon.d.ts +3 -0
  6. package/16/outline/esm/BoltIcon.js +24 -0
  7. package/16/outline/esm/SidebarIcon.d.ts +3 -0
  8. package/16/outline/esm/SidebarIcon.js +24 -0
  9. package/16/outline/esm/index.d.ts +2 -0
  10. package/16/outline/esm/index.js +2 -0
  11. package/16/outline/index.d.ts +2 -0
  12. package/16/outline/index.js +2 -0
  13. package/16/solid/BoltIcon.d.ts +3 -0
  14. package/16/solid/BoltIcon.js +24 -0
  15. package/16/solid/SidebarIcon.d.ts +3 -0
  16. package/16/solid/SidebarIcon.js +23 -0
  17. package/16/solid/esm/BoltIcon.d.ts +3 -0
  18. package/16/solid/esm/BoltIcon.js +24 -0
  19. package/16/solid/esm/SidebarIcon.d.ts +3 -0
  20. package/16/solid/esm/SidebarIcon.js +23 -0
  21. package/16/solid/esm/index.d.ts +2 -0
  22. package/16/solid/esm/index.js +2 -0
  23. package/16/solid/index.d.ts +2 -0
  24. package/16/solid/index.js +2 -0
  25. package/24/outline/BoltIcon.d.ts +3 -0
  26. package/24/outline/BoltIcon.js +24 -0
  27. package/24/outline/SidebarIcon.d.ts +3 -0
  28. package/24/outline/SidebarIcon.js +24 -0
  29. package/24/outline/esm/BoltIcon.d.ts +3 -0
  30. package/24/outline/esm/BoltIcon.js +24 -0
  31. package/24/outline/esm/SidebarIcon.d.ts +3 -0
  32. package/24/outline/esm/SidebarIcon.js +24 -0
  33. package/24/outline/esm/index.d.ts +2 -0
  34. package/24/outline/esm/index.js +2 -0
  35. package/24/outline/index.d.ts +2 -0
  36. package/24/outline/index.js +2 -0
  37. package/24/solid/BoltIcon.d.ts +3 -0
  38. package/24/solid/BoltIcon.js +24 -0
  39. package/24/solid/SidebarIcon.d.ts +3 -0
  40. package/24/solid/SidebarIcon.js +23 -0
  41. package/24/solid/esm/BoltIcon.d.ts +3 -0
  42. package/24/solid/esm/BoltIcon.js +24 -0
  43. package/24/solid/esm/SidebarIcon.d.ts +3 -0
  44. package/24/solid/esm/SidebarIcon.js +23 -0
  45. package/24/solid/esm/index.d.ts +2 -0
  46. package/24/solid/esm/index.js +2 -0
  47. package/24/solid/index.d.ts +2 -0
  48. package/24/solid/index.js +2 -0
  49. package/README.md +6 -0
  50. package/package.json +1 -1
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const BoltIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default BoltIcon;
@@ -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,3 @@
1
+ import * as React from 'react';
2
+ declare const SidebarIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SidebarIcon;
@@ -0,0 +1,24 @@
1
+ const React = require("react");
2
+ function SidebarIcon({
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: "M3.25 2A2.25 2.25 0 0 0 1 4.25v7.5A2.25 2.25 0 0 0 3.25 14h9.5A2.25 2.25 0 0 0 15 11.75v-7.5A2.25 2.25 0 0 0 12.75 2zM2.5 4.25a.75.75 0 0 1 .75-.75h1.8v9h-1.8a.75.75 0 0 1-.75-.75zm3.95 8.25h6.3a.75.75 0 0 0 .75-.75v-7.5a.75.75 0 0 0-.75-.75h-6.3z"
21
+ }));
22
+ }
23
+ const ForwardRef = React.forwardRef(SidebarIcon);
24
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const BoltIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default BoltIcon;
@@ -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;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const SidebarIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SidebarIcon;
@@ -0,0 +1,24 @@
1
+ import * as React from "react";
2
+ function SidebarIcon({
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: "M3.25 2A2.25 2.25 0 0 0 1 4.25v7.5A2.25 2.25 0 0 0 3.25 14h9.5A2.25 2.25 0 0 0 15 11.75v-7.5A2.25 2.25 0 0 0 12.75 2zM2.5 4.25a.75.75 0 0 1 .75-.75h1.8v9h-1.8a.75.75 0 0 1-.75-.75zm3.95 8.25h6.3a.75.75 0 0 0 .75-.75v-7.5a.75.75 0 0 0-.75-.75h-6.3z"
21
+ }));
22
+ }
23
+ const ForwardRef = React.forwardRef(SidebarIcon);
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'
@@ -133,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon'
133
134
  export { default as ShieldIcon } from './ShieldIcon'
134
135
  export { default as ShoppingBagIcon } from './ShoppingBagIcon'
135
136
  export { default as ShoppingCartIcon } from './ShoppingCartIcon'
137
+ export { default as SidebarIcon } from './SidebarIcon'
136
138
  export { default as SlashIcon } from './SlashIcon'
137
139
  export { default as SliderIcon } from './SliderIcon'
138
140
  export { default as SmartphoneIcon } from './SmartphoneIcon'
@@ -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'
@@ -133,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon.js'
133
134
  export { default as ShieldIcon } from './ShieldIcon.js'
134
135
  export { default as ShoppingBagIcon } from './ShoppingBagIcon.js'
135
136
  export { default as ShoppingCartIcon } from './ShoppingCartIcon.js'
137
+ export { default as SidebarIcon } from './SidebarIcon.js'
136
138
  export { default as SlashIcon } from './SlashIcon.js'
137
139
  export { default as SliderIcon } from './SliderIcon.js'
138
140
  export { default as SmartphoneIcon } from './SmartphoneIcon.js'
@@ -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'
@@ -133,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon'
133
134
  export { default as ShieldIcon } from './ShieldIcon'
134
135
  export { default as ShoppingBagIcon } from './ShoppingBagIcon'
135
136
  export { default as ShoppingCartIcon } from './ShoppingCartIcon'
137
+ export { default as SidebarIcon } from './SidebarIcon'
136
138
  export { default as SlashIcon } from './SlashIcon'
137
139
  export { default as SliderIcon } from './SliderIcon'
138
140
  export { default as SmartphoneIcon } from './SmartphoneIcon'
@@ -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")
@@ -133,6 +134,7 @@ module.exports.ShieldXIcon = require("./ShieldXIcon.js")
133
134
  module.exports.ShieldIcon = require("./ShieldIcon.js")
134
135
  module.exports.ShoppingBagIcon = require("./ShoppingBagIcon.js")
135
136
  module.exports.ShoppingCartIcon = require("./ShoppingCartIcon.js")
137
+ module.exports.SidebarIcon = require("./SidebarIcon.js")
136
138
  module.exports.SlashIcon = require("./SlashIcon.js")
137
139
  module.exports.SliderIcon = require("./SliderIcon.js")
138
140
  module.exports.SmartphoneIcon = require("./SmartphoneIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const BoltIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default BoltIcon;
@@ -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,3 @@
1
+ import * as React from 'react';
2
+ declare const SidebarIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SidebarIcon;
@@ -0,0 +1,23 @@
1
+ const React = require("react");
2
+ function SidebarIcon({
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
+ d: "M5 14H3.25A2.25 2.25 0 0 1 1 11.75v-7.5A2.25 2.25 0 0 1 3.25 2H5zm7.75-12A2.25 2.25 0 0 1 15 4.25v7.5A2.25 2.25 0 0 1 12.75 14H6.5V2z"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(SidebarIcon);
23
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const BoltIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default BoltIcon;
@@ -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;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const SidebarIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SidebarIcon;
@@ -0,0 +1,23 @@
1
+ import * as React from "react";
2
+ function SidebarIcon({
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
+ d: "M5 14H3.25A2.25 2.25 0 0 1 1 11.75v-7.5A2.25 2.25 0 0 1 3.25 2H5zm7.75-12A2.25 2.25 0 0 1 15 4.25v7.5A2.25 2.25 0 0 1 12.75 14H6.5V2z"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(SidebarIcon);
23
+ 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'
@@ -133,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon'
133
134
  export { default as ShieldIcon } from './ShieldIcon'
134
135
  export { default as ShoppingBagIcon } from './ShoppingBagIcon'
135
136
  export { default as ShoppingCartIcon } from './ShoppingCartIcon'
137
+ export { default as SidebarIcon } from './SidebarIcon'
136
138
  export { default as SlashIcon } from './SlashIcon'
137
139
  export { default as SliderIcon } from './SliderIcon'
138
140
  export { default as SmartphoneIcon } from './SmartphoneIcon'
@@ -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'
@@ -133,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon.js'
133
134
  export { default as ShieldIcon } from './ShieldIcon.js'
134
135
  export { default as ShoppingBagIcon } from './ShoppingBagIcon.js'
135
136
  export { default as ShoppingCartIcon } from './ShoppingCartIcon.js'
137
+ export { default as SidebarIcon } from './SidebarIcon.js'
136
138
  export { default as SlashIcon } from './SlashIcon.js'
137
139
  export { default as SliderIcon } from './SliderIcon.js'
138
140
  export { default as SmartphoneIcon } from './SmartphoneIcon.js'
@@ -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'
@@ -133,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon'
133
134
  export { default as ShieldIcon } from './ShieldIcon'
134
135
  export { default as ShoppingBagIcon } from './ShoppingBagIcon'
135
136
  export { default as ShoppingCartIcon } from './ShoppingCartIcon'
137
+ export { default as SidebarIcon } from './SidebarIcon'
136
138
  export { default as SlashIcon } from './SlashIcon'
137
139
  export { default as SliderIcon } from './SliderIcon'
138
140
  export { default as SmartphoneIcon } from './SmartphoneIcon'
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")
@@ -133,6 +134,7 @@ module.exports.ShieldXIcon = require("./ShieldXIcon.js")
133
134
  module.exports.ShieldIcon = require("./ShieldIcon.js")
134
135
  module.exports.ShoppingBagIcon = require("./ShoppingBagIcon.js")
135
136
  module.exports.ShoppingCartIcon = require("./ShoppingCartIcon.js")
137
+ module.exports.SidebarIcon = require("./SidebarIcon.js")
136
138
  module.exports.SlashIcon = require("./SlashIcon.js")
137
139
  module.exports.SliderIcon = require("./SliderIcon.js")
138
140
  module.exports.SmartphoneIcon = require("./SmartphoneIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const BoltIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default BoltIcon;
@@ -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,3 @@
1
+ import * as React from 'react';
2
+ declare const SidebarIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SidebarIcon;
@@ -0,0 +1,24 @@
1
+ const React = require("react");
2
+ function SidebarIcon({
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: "M4.75 3A2.75 2.75 0 0 0 2 5.75v12.5A2.75 2.75 0 0 0 4.75 21h14.5A2.75 2.75 0 0 0 22 18.25V5.75A2.75 2.75 0 0 0 19.25 3zM3.5 5.75c0-.69.56-1.25 1.25-1.25H8v15H4.75c-.69 0-1.25-.56-1.25-1.25zm6 13.75h9.75c.69 0 1.25-.56 1.25-1.25V5.75c0-.69-.56-1.25-1.25-1.25H9.5z"
21
+ }));
22
+ }
23
+ const ForwardRef = React.forwardRef(SidebarIcon);
24
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const BoltIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default BoltIcon;
@@ -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;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const SidebarIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SidebarIcon;
@@ -0,0 +1,24 @@
1
+ import * as React from "react";
2
+ function SidebarIcon({
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: "M4.75 3A2.75 2.75 0 0 0 2 5.75v12.5A2.75 2.75 0 0 0 4.75 21h14.5A2.75 2.75 0 0 0 22 18.25V5.75A2.75 2.75 0 0 0 19.25 3zM3.5 5.75c0-.69.56-1.25 1.25-1.25H8v15H4.75c-.69 0-1.25-.56-1.25-1.25zm6 13.75h9.75c.69 0 1.25-.56 1.25-1.25V5.75c0-.69-.56-1.25-1.25-1.25H9.5z"
21
+ }));
22
+ }
23
+ const ForwardRef = React.forwardRef(SidebarIcon);
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'
@@ -133,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon'
133
134
  export { default as ShieldIcon } from './ShieldIcon'
134
135
  export { default as ShoppingBagIcon } from './ShoppingBagIcon'
135
136
  export { default as ShoppingCartIcon } from './ShoppingCartIcon'
137
+ export { default as SidebarIcon } from './SidebarIcon'
136
138
  export { default as SlashIcon } from './SlashIcon'
137
139
  export { default as SliderIcon } from './SliderIcon'
138
140
  export { default as SmartphoneIcon } from './SmartphoneIcon'
@@ -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'
@@ -133,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon.js'
133
134
  export { default as ShieldIcon } from './ShieldIcon.js'
134
135
  export { default as ShoppingBagIcon } from './ShoppingBagIcon.js'
135
136
  export { default as ShoppingCartIcon } from './ShoppingCartIcon.js'
137
+ export { default as SidebarIcon } from './SidebarIcon.js'
136
138
  export { default as SlashIcon } from './SlashIcon.js'
137
139
  export { default as SliderIcon } from './SliderIcon.js'
138
140
  export { default as SmartphoneIcon } from './SmartphoneIcon.js'
@@ -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'
@@ -133,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon'
133
134
  export { default as ShieldIcon } from './ShieldIcon'
134
135
  export { default as ShoppingBagIcon } from './ShoppingBagIcon'
135
136
  export { default as ShoppingCartIcon } from './ShoppingCartIcon'
137
+ export { default as SidebarIcon } from './SidebarIcon'
136
138
  export { default as SlashIcon } from './SlashIcon'
137
139
  export { default as SliderIcon } from './SliderIcon'
138
140
  export { default as SmartphoneIcon } from './SmartphoneIcon'
@@ -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")
@@ -133,6 +134,7 @@ module.exports.ShieldXIcon = require("./ShieldXIcon.js")
133
134
  module.exports.ShieldIcon = require("./ShieldIcon.js")
134
135
  module.exports.ShoppingBagIcon = require("./ShoppingBagIcon.js")
135
136
  module.exports.ShoppingCartIcon = require("./ShoppingCartIcon.js")
137
+ module.exports.SidebarIcon = require("./SidebarIcon.js")
136
138
  module.exports.SlashIcon = require("./SlashIcon.js")
137
139
  module.exports.SliderIcon = require("./SliderIcon.js")
138
140
  module.exports.SmartphoneIcon = require("./SmartphoneIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const BoltIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default BoltIcon;
@@ -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,3 @@
1
+ import * as React from 'react';
2
+ declare const SidebarIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SidebarIcon;
@@ -0,0 +1,23 @@
1
+ const React = require("react");
2
+ function SidebarIcon({
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
+ d: "M8 21H4.75A2.75 2.75 0 0 1 2 18.25V5.75A2.75 2.75 0 0 1 4.75 3H8zM19.25 3A2.75 2.75 0 0 1 22 5.75v12.5A2.75 2.75 0 0 1 19.25 21H9.5V3z"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(SidebarIcon);
23
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const BoltIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default BoltIcon;
@@ -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;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const SidebarIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SidebarIcon;
@@ -0,0 +1,23 @@
1
+ import * as React from "react";
2
+ function SidebarIcon({
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
+ d: "M8 21H4.75A2.75 2.75 0 0 1 2 18.25V5.75A2.75 2.75 0 0 1 4.75 3H8zM19.25 3A2.75 2.75 0 0 1 22 5.75v12.5A2.75 2.75 0 0 1 19.25 21H9.5V3z"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(SidebarIcon);
23
+ 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'
@@ -133,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon'
133
134
  export { default as ShieldIcon } from './ShieldIcon'
134
135
  export { default as ShoppingBagIcon } from './ShoppingBagIcon'
135
136
  export { default as ShoppingCartIcon } from './ShoppingCartIcon'
137
+ export { default as SidebarIcon } from './SidebarIcon'
136
138
  export { default as SlashIcon } from './SlashIcon'
137
139
  export { default as SliderIcon } from './SliderIcon'
138
140
  export { default as SmartphoneIcon } from './SmartphoneIcon'
@@ -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'
@@ -133,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon.js'
133
134
  export { default as ShieldIcon } from './ShieldIcon.js'
134
135
  export { default as ShoppingBagIcon } from './ShoppingBagIcon.js'
135
136
  export { default as ShoppingCartIcon } from './ShoppingCartIcon.js'
137
+ export { default as SidebarIcon } from './SidebarIcon.js'
136
138
  export { default as SlashIcon } from './SlashIcon.js'
137
139
  export { default as SliderIcon } from './SliderIcon.js'
138
140
  export { default as SmartphoneIcon } from './SmartphoneIcon.js'
@@ -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'
@@ -133,6 +134,7 @@ export { default as ShieldXIcon } from './ShieldXIcon'
133
134
  export { default as ShieldIcon } from './ShieldIcon'
134
135
  export { default as ShoppingBagIcon } from './ShoppingBagIcon'
135
136
  export { default as ShoppingCartIcon } from './ShoppingCartIcon'
137
+ export { default as SidebarIcon } from './SidebarIcon'
136
138
  export { default as SlashIcon } from './SlashIcon'
137
139
  export { default as SliderIcon } from './SliderIcon'
138
140
  export { default as SmartphoneIcon } from './SmartphoneIcon'
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")
@@ -133,6 +134,7 @@ module.exports.ShieldXIcon = require("./ShieldXIcon.js")
133
134
  module.exports.ShieldIcon = require("./ShieldIcon.js")
134
135
  module.exports.ShoppingBagIcon = require("./ShoppingBagIcon.js")
135
136
  module.exports.ShoppingCartIcon = require("./ShoppingCartIcon.js")
137
+ module.exports.SidebarIcon = require("./SidebarIcon.js")
136
138
  module.exports.SlashIcon = require("./SlashIcon.js")
137
139
  module.exports.SliderIcon = require("./SliderIcon.js")
138
140
  module.exports.SmartphoneIcon = require("./SmartphoneIcon.js")
package/README.md CHANGED
@@ -10,6 +10,12 @@ All icons are available as individual React components.
10
10
 
11
11
  First, install `metal-icons` from npm:
12
12
 
13
+ ```bash
14
+ npm install metal-icons
15
+ ```
16
+
17
+ or
18
+
13
19
  ```bash
14
20
  yarn add metal-icons
15
21
  ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "metal-icons",
3
3
  "license": "MIT",
4
- "version": "0.2.11",
4
+ "version": "0.2.13",
5
5
  "description": "A flexible React icon library.",
6
6
  "keywords": [
7
7
  "design",