metal-icons 0.2.10 → 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.
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/ZoomOutIcon.d.ts +3 -0
  4. package/16/outline/ZoomOutIcon.js +25 -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/ZoomOutIcon.d.ts +3 -0
  8. package/16/outline/esm/ZoomOutIcon.js +25 -0
  9. package/16/outline/esm/index.d.ts +3 -1
  10. package/16/outline/esm/index.js +3 -1
  11. package/16/outline/index.d.ts +3 -1
  12. package/16/outline/index.js +3 -1
  13. package/16/solid/BoltIcon.d.ts +3 -0
  14. package/16/solid/BoltIcon.js +24 -0
  15. package/16/solid/ZoomOutIcon.d.ts +3 -0
  16. package/16/solid/ZoomOutIcon.js +22 -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/ZoomOutIcon.d.ts +3 -0
  20. package/16/solid/esm/ZoomOutIcon.js +22 -0
  21. package/16/solid/esm/index.d.ts +3 -1
  22. package/16/solid/esm/index.js +3 -1
  23. package/16/solid/index.d.ts +3 -1
  24. package/16/solid/index.js +3 -1
  25. package/24/outline/BoltIcon.d.ts +3 -0
  26. package/24/outline/BoltIcon.js +24 -0
  27. package/24/outline/ZoomOutIcon.d.ts +3 -0
  28. package/24/outline/ZoomOutIcon.js +25 -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/ZoomOutIcon.d.ts +3 -0
  32. package/24/outline/esm/ZoomOutIcon.js +25 -0
  33. package/24/outline/esm/index.d.ts +3 -1
  34. package/24/outline/esm/index.js +3 -1
  35. package/24/outline/index.d.ts +3 -1
  36. package/24/outline/index.js +3 -1
  37. package/24/solid/BoltIcon.d.ts +3 -0
  38. package/24/solid/BoltIcon.js +24 -0
  39. package/24/solid/ZoomOutIcon.d.ts +3 -0
  40. package/24/solid/ZoomOutIcon.js +22 -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/ZoomOutIcon.d.ts +3 -0
  44. package/24/solid/esm/ZoomOutIcon.js +22 -0
  45. package/24/solid/esm/index.d.ts +3 -1
  46. package/24/solid/esm/index.js +3 -1
  47. package/24/solid/index.d.ts +3 -1
  48. package/24/solid/index.js +3 -1
  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 ZoomOutIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default ZoomOutIcon;
@@ -0,0 +1,25 @@
1
+ const React = require("react");
2
+ function ZoomOutIcon({
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
+ d: "M4.22 6.72a.75.75 0 0 1 .53-.22h5a.75.75 0 1 1 0 1.5h-5a.75.75 0 0 1-.53-1.28"
19
+ }), /*#__PURE__*/React.createElement("path", {
20
+ fillRule: "evenodd",
21
+ d: "M1.694 4.387a6.25 6.25 0 0 0 9.413 7.78l2.613 2.613a.75.75 0 1 0 1.06-1.06l-2.612-2.613a6.25 6.25 0 1 0-10.474-6.72m2.197-.496a4.75 4.75 0 1 1 6.718 6.718A4.75 4.75 0 0 1 3.89 3.89Z"
22
+ }));
23
+ }
24
+ const ForwardRef = React.forwardRef(ZoomOutIcon);
25
+ 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 ZoomOutIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default ZoomOutIcon;
@@ -0,0 +1,25 @@
1
+ import * as React from "react";
2
+ function ZoomOutIcon({
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
+ d: "M4.22 6.72a.75.75 0 0 1 .53-.22h5a.75.75 0 1 1 0 1.5h-5a.75.75 0 0 1-.53-1.28"
19
+ }), /*#__PURE__*/React.createElement("path", {
20
+ fillRule: "evenodd",
21
+ d: "M1.694 4.387a6.25 6.25 0 0 0 9.413 7.78l2.613 2.613a.75.75 0 1 0 1.06-1.06l-2.612-2.613a6.25 6.25 0 1 0-10.474-6.72m2.197-.496a4.75 4.75 0 1 1 6.718 6.718A4.75 4.75 0 0 1 3.89 3.89Z"
22
+ }));
23
+ }
24
+ const ForwardRef = React.forwardRef(ZoomOutIcon);
25
+ 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'
@@ -153,4 +154,5 @@ export { default as TrashIcon } from './TrashIcon'
153
154
  export { default as UploadIcon } from './UploadIcon'
154
155
  export { default as UserIcon } from './UserIcon'
155
156
  export { default as ViewIcon } from './ViewIcon'
156
- export { default as ZoomInIcon } from './ZoomInIcon'
157
+ export { default as ZoomInIcon } from './ZoomInIcon'
158
+ export { default as ZoomOutIcon } from './ZoomOutIcon'
@@ -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'
@@ -153,4 +154,5 @@ export { default as TrashIcon } from './TrashIcon.js'
153
154
  export { default as UploadIcon } from './UploadIcon.js'
154
155
  export { default as UserIcon } from './UserIcon.js'
155
156
  export { default as ViewIcon } from './ViewIcon.js'
156
- export { default as ZoomInIcon } from './ZoomInIcon.js'
157
+ export { default as ZoomInIcon } from './ZoomInIcon.js'
158
+ export { default as ZoomOutIcon } from './ZoomOutIcon.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'
@@ -153,4 +154,5 @@ export { default as TrashIcon } from './TrashIcon'
153
154
  export { default as UploadIcon } from './UploadIcon'
154
155
  export { default as UserIcon } from './UserIcon'
155
156
  export { default as ViewIcon } from './ViewIcon'
156
- export { default as ZoomInIcon } from './ZoomInIcon'
157
+ export { default as ZoomInIcon } from './ZoomInIcon'
158
+ export { default as ZoomOutIcon } from './ZoomOutIcon'
@@ -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")
@@ -153,4 +154,5 @@ module.exports.TrashIcon = require("./TrashIcon.js")
153
154
  module.exports.UploadIcon = require("./UploadIcon.js")
154
155
  module.exports.UserIcon = require("./UserIcon.js")
155
156
  module.exports.ViewIcon = require("./ViewIcon.js")
156
- module.exports.ZoomInIcon = require("./ZoomInIcon.js")
157
+ module.exports.ZoomInIcon = require("./ZoomInIcon.js")
158
+ module.exports.ZoomOutIcon = require("./ZoomOutIcon.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 ZoomOutIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default ZoomOutIcon;
@@ -0,0 +1,22 @@
1
+ const React = require("react");
2
+ function ZoomOutIcon({
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
+ 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
+ d: "M1.694 4.387a6.25 6.25 0 0 0 9.413 7.78l2.613 2.613a.75.75 0 1 0 1.06-1.06l-2.612-2.613a6.25 6.25 0 1 0-10.474-6.72M4.22 6.72a.75.75 0 0 1 .53-.22h5a.75.75 0 1 1 0 1.5h-5a.75.75 0 0 1-.53-1.28"
19
+ }));
20
+ }
21
+ const ForwardRef = React.forwardRef(ZoomOutIcon);
22
+ 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 ZoomOutIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default ZoomOutIcon;
@@ -0,0 +1,22 @@
1
+ import * as React from "react";
2
+ function ZoomOutIcon({
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
+ 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
+ d: "M1.694 4.387a6.25 6.25 0 0 0 9.413 7.78l2.613 2.613a.75.75 0 1 0 1.06-1.06l-2.612-2.613a6.25 6.25 0 1 0-10.474-6.72M4.22 6.72a.75.75 0 0 1 .53-.22h5a.75.75 0 1 1 0 1.5h-5a.75.75 0 0 1-.53-1.28"
19
+ }));
20
+ }
21
+ const ForwardRef = React.forwardRef(ZoomOutIcon);
22
+ 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'
@@ -153,4 +154,5 @@ export { default as TrashIcon } from './TrashIcon'
153
154
  export { default as UploadIcon } from './UploadIcon'
154
155
  export { default as UserIcon } from './UserIcon'
155
156
  export { default as ViewIcon } from './ViewIcon'
156
- export { default as ZoomInIcon } from './ZoomInIcon'
157
+ export { default as ZoomInIcon } from './ZoomInIcon'
158
+ export { default as ZoomOutIcon } from './ZoomOutIcon'
@@ -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'
@@ -153,4 +154,5 @@ export { default as TrashIcon } from './TrashIcon.js'
153
154
  export { default as UploadIcon } from './UploadIcon.js'
154
155
  export { default as UserIcon } from './UserIcon.js'
155
156
  export { default as ViewIcon } from './ViewIcon.js'
156
- export { default as ZoomInIcon } from './ZoomInIcon.js'
157
+ export { default as ZoomInIcon } from './ZoomInIcon.js'
158
+ export { default as ZoomOutIcon } from './ZoomOutIcon.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'
@@ -153,4 +154,5 @@ export { default as TrashIcon } from './TrashIcon'
153
154
  export { default as UploadIcon } from './UploadIcon'
154
155
  export { default as UserIcon } from './UserIcon'
155
156
  export { default as ViewIcon } from './ViewIcon'
156
- export { default as ZoomInIcon } from './ZoomInIcon'
157
+ export { default as ZoomInIcon } from './ZoomInIcon'
158
+ export { default as ZoomOutIcon } from './ZoomOutIcon'
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")
@@ -153,4 +154,5 @@ module.exports.TrashIcon = require("./TrashIcon.js")
153
154
  module.exports.UploadIcon = require("./UploadIcon.js")
154
155
  module.exports.UserIcon = require("./UserIcon.js")
155
156
  module.exports.ViewIcon = require("./ViewIcon.js")
156
- module.exports.ZoomInIcon = require("./ZoomInIcon.js")
157
+ module.exports.ZoomInIcon = require("./ZoomInIcon.js")
158
+ module.exports.ZoomOutIcon = require("./ZoomOutIcon.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 ZoomOutIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default ZoomOutIcon;
@@ -0,0 +1,25 @@
1
+ const React = require("react");
2
+ function ZoomOutIcon({
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
+ d: "M6.71967 10.2197C6.86032 10.079 7.05109 10 7.25 10h7c.1989 0 .3897.079.5303.2197.1407.1406.2197.3314.2197.5303s-.079.3897-.2197.5303c-.1406.1407-.3314.2197-.5303.2197h-7c-.19891 0-.38968-.079-.53033-.2197C6.57902 11.1397 6.5 10.9489 6.5 10.75s.07902-.3897.21967-.5303"
19
+ }), /*#__PURE__*/React.createElement("path", {
20
+ fillRule: "evenodd",
21
+ d: "M2.98945 6.70842C2.33945 7.95646 2.00004 9.34286 2 10.75c-.00004 1.6667.47594 3.2987 1.37194 4.7041.89599 1.4054 2.17472 2.5256 3.68575 3.2289 1.51104.7033 3.19151.9604 4.84371.7411s3.2074-.9059 4.4826-1.9791l4.336 4.335c.0687.0737.1515.1328.2435.1738s.1913.063.292.0648.2007-.0167.2941-.0545c.0934-.0377.1782-.0938.2494-.165.0713-.0713.1274-.1561.1651-.2495s.0563-.1934.0545-.2941-.0238-.2-.0648-.292-.1001-.1748-.1738-.2435l-4.335-4.336c.906-1.0767 1.539-2.356 1.8453-3.7294.3062-1.3734.2767-2.80048-.0861-4.16008-.3627-1.35961-1.048-2.61166-1.9978-3.64997-.9497-1.03832-2.1359-1.83226-3.4579-2.31448-1.3219-.48222-2.7407-.6385-4.13591-.45558-1.39522.18291-2.72576.69963-3.87874 1.50632s-2.09439 1.87956-2.7444 3.12761M5.62348 5.6235C6.98311 4.26386 8.82718 3.50003 10.75 3.50003c1.9228 0 3.7669.76383 5.1265 2.12347C17.2362 6.98314 18 8.82721 18 10.75c0 1.9228-.7638 3.7669-2.1235 5.1265C14.5169 17.2362 12.6728 18 10.75 18c-1.92282 0-3.76689-.7638-5.12652-2.1235C4.26384 14.5169 3.5 12.6728 3.5 10.75c0-1.92279.76384-3.76686 2.12348-5.1265"
22
+ }));
23
+ }
24
+ const ForwardRef = React.forwardRef(ZoomOutIcon);
25
+ 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 ZoomOutIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default ZoomOutIcon;
@@ -0,0 +1,25 @@
1
+ import * as React from "react";
2
+ function ZoomOutIcon({
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
+ d: "M6.71967 10.2197C6.86032 10.079 7.05109 10 7.25 10h7c.1989 0 .3897.079.5303.2197.1407.1406.2197.3314.2197.5303s-.079.3897-.2197.5303c-.1406.1407-.3314.2197-.5303.2197h-7c-.19891 0-.38968-.079-.53033-.2197C6.57902 11.1397 6.5 10.9489 6.5 10.75s.07902-.3897.21967-.5303"
19
+ }), /*#__PURE__*/React.createElement("path", {
20
+ fillRule: "evenodd",
21
+ d: "M2.98945 6.70842C2.33945 7.95646 2.00004 9.34286 2 10.75c-.00004 1.6667.47594 3.2987 1.37194 4.7041.89599 1.4054 2.17472 2.5256 3.68575 3.2289 1.51104.7033 3.19151.9604 4.84371.7411s3.2074-.9059 4.4826-1.9791l4.336 4.335c.0687.0737.1515.1328.2435.1738s.1913.063.292.0648.2007-.0167.2941-.0545c.0934-.0377.1782-.0938.2494-.165.0713-.0713.1274-.1561.1651-.2495s.0563-.1934.0545-.2941-.0238-.2-.0648-.292-.1001-.1748-.1738-.2435l-4.335-4.336c.906-1.0767 1.539-2.356 1.8453-3.7294.3062-1.3734.2767-2.80048-.0861-4.16008-.3627-1.35961-1.048-2.61166-1.9978-3.64997-.9497-1.03832-2.1359-1.83226-3.4579-2.31448-1.3219-.48222-2.7407-.6385-4.13591-.45558-1.39522.18291-2.72576.69963-3.87874 1.50632s-2.09439 1.87956-2.7444 3.12761M5.62348 5.6235C6.98311 4.26386 8.82718 3.50003 10.75 3.50003c1.9228 0 3.7669.76383 5.1265 2.12347C17.2362 6.98314 18 8.82721 18 10.75c0 1.9228-.7638 3.7669-2.1235 5.1265C14.5169 17.2362 12.6728 18 10.75 18c-1.92282 0-3.76689-.7638-5.12652-2.1235C4.26384 14.5169 3.5 12.6728 3.5 10.75c0-1.92279.76384-3.76686 2.12348-5.1265"
22
+ }));
23
+ }
24
+ const ForwardRef = React.forwardRef(ZoomOutIcon);
25
+ 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'
@@ -153,4 +154,5 @@ export { default as TrashIcon } from './TrashIcon'
153
154
  export { default as UploadIcon } from './UploadIcon'
154
155
  export { default as UserIcon } from './UserIcon'
155
156
  export { default as ViewIcon } from './ViewIcon'
156
- export { default as ZoomInIcon } from './ZoomInIcon'
157
+ export { default as ZoomInIcon } from './ZoomInIcon'
158
+ export { default as ZoomOutIcon } from './ZoomOutIcon'
@@ -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'
@@ -153,4 +154,5 @@ export { default as TrashIcon } from './TrashIcon.js'
153
154
  export { default as UploadIcon } from './UploadIcon.js'
154
155
  export { default as UserIcon } from './UserIcon.js'
155
156
  export { default as ViewIcon } from './ViewIcon.js'
156
- export { default as ZoomInIcon } from './ZoomInIcon.js'
157
+ export { default as ZoomInIcon } from './ZoomInIcon.js'
158
+ export { default as ZoomOutIcon } from './ZoomOutIcon.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'
@@ -153,4 +154,5 @@ export { default as TrashIcon } from './TrashIcon'
153
154
  export { default as UploadIcon } from './UploadIcon'
154
155
  export { default as UserIcon } from './UserIcon'
155
156
  export { default as ViewIcon } from './ViewIcon'
156
- export { default as ZoomInIcon } from './ZoomInIcon'
157
+ export { default as ZoomInIcon } from './ZoomInIcon'
158
+ export { default as ZoomOutIcon } from './ZoomOutIcon'
@@ -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")
@@ -153,4 +154,5 @@ module.exports.TrashIcon = require("./TrashIcon.js")
153
154
  module.exports.UploadIcon = require("./UploadIcon.js")
154
155
  module.exports.UserIcon = require("./UserIcon.js")
155
156
  module.exports.ViewIcon = require("./ViewIcon.js")
156
- module.exports.ZoomInIcon = require("./ZoomInIcon.js")
157
+ module.exports.ZoomInIcon = require("./ZoomInIcon.js")
158
+ module.exports.ZoomOutIcon = require("./ZoomOutIcon.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 ZoomOutIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default ZoomOutIcon;
@@ -0,0 +1,22 @@
1
+ const React = require("react");
2
+ function ZoomOutIcon({
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
+ 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
+ d: "M2.99 6.708a8.75 8.75 0 0 0 13.394 10.737l4.336 4.335a.75.75 0 1 0 1.06-1.06l-4.335-4.336A8.751 8.751 0 1 0 2.989 6.708Zm3.73 3.512a.75.75 0 0 1 .53-.22h7a.75.75 0 1 1 0 1.5h-7a.75.75 0 0 1-.53-1.28"
19
+ }));
20
+ }
21
+ const ForwardRef = React.forwardRef(ZoomOutIcon);
22
+ 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 ZoomOutIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default ZoomOutIcon;
@@ -0,0 +1,22 @@
1
+ import * as React from "react";
2
+ function ZoomOutIcon({
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
+ 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
+ d: "M2.99 6.708a8.75 8.75 0 0 0 13.394 10.737l4.336 4.335a.75.75 0 1 0 1.06-1.06l-4.335-4.336A8.751 8.751 0 1 0 2.989 6.708Zm3.73 3.512a.75.75 0 0 1 .53-.22h7a.75.75 0 1 1 0 1.5h-7a.75.75 0 0 1-.53-1.28"
19
+ }));
20
+ }
21
+ const ForwardRef = React.forwardRef(ZoomOutIcon);
22
+ 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'
@@ -153,4 +154,5 @@ export { default as TrashIcon } from './TrashIcon'
153
154
  export { default as UploadIcon } from './UploadIcon'
154
155
  export { default as UserIcon } from './UserIcon'
155
156
  export { default as ViewIcon } from './ViewIcon'
156
- export { default as ZoomInIcon } from './ZoomInIcon'
157
+ export { default as ZoomInIcon } from './ZoomInIcon'
158
+ export { default as ZoomOutIcon } from './ZoomOutIcon'
@@ -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'
@@ -153,4 +154,5 @@ export { default as TrashIcon } from './TrashIcon.js'
153
154
  export { default as UploadIcon } from './UploadIcon.js'
154
155
  export { default as UserIcon } from './UserIcon.js'
155
156
  export { default as ViewIcon } from './ViewIcon.js'
156
- export { default as ZoomInIcon } from './ZoomInIcon.js'
157
+ export { default as ZoomInIcon } from './ZoomInIcon.js'
158
+ export { default as ZoomOutIcon } from './ZoomOutIcon.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'
@@ -153,4 +154,5 @@ export { default as TrashIcon } from './TrashIcon'
153
154
  export { default as UploadIcon } from './UploadIcon'
154
155
  export { default as UserIcon } from './UserIcon'
155
156
  export { default as ViewIcon } from './ViewIcon'
156
- export { default as ZoomInIcon } from './ZoomInIcon'
157
+ export { default as ZoomInIcon } from './ZoomInIcon'
158
+ export { default as ZoomOutIcon } from './ZoomOutIcon'
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")
@@ -153,4 +154,5 @@ module.exports.TrashIcon = require("./TrashIcon.js")
153
154
  module.exports.UploadIcon = require("./UploadIcon.js")
154
155
  module.exports.UserIcon = require("./UserIcon.js")
155
156
  module.exports.ViewIcon = require("./ViewIcon.js")
156
- module.exports.ZoomInIcon = require("./ZoomInIcon.js")
157
+ module.exports.ZoomInIcon = require("./ZoomInIcon.js")
158
+ module.exports.ZoomOutIcon = require("./ZoomOutIcon.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.10",
4
+ "version": "0.2.12",
5
5
  "description": "A flexible React icon library.",
6
6
  "keywords": [
7
7
  "design",