metal-icons 0.2.9 → 0.2.11

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.
@@ -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 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;
@@ -153,4 +153,5 @@ export { default as TrashIcon } from './TrashIcon'
153
153
  export { default as UploadIcon } from './UploadIcon'
154
154
  export { default as UserIcon } from './UserIcon'
155
155
  export { default as ViewIcon } from './ViewIcon'
156
- export { default as ZoomInIcon } from './ZoomInIcon'
156
+ export { default as ZoomInIcon } from './ZoomInIcon'
157
+ export { default as ZoomOutIcon } from './ZoomOutIcon'
@@ -153,4 +153,5 @@ export { default as TrashIcon } from './TrashIcon.js'
153
153
  export { default as UploadIcon } from './UploadIcon.js'
154
154
  export { default as UserIcon } from './UserIcon.js'
155
155
  export { default as ViewIcon } from './ViewIcon.js'
156
- export { default as ZoomInIcon } from './ZoomInIcon.js'
156
+ export { default as ZoomInIcon } from './ZoomInIcon.js'
157
+ export { default as ZoomOutIcon } from './ZoomOutIcon.js'
@@ -153,4 +153,5 @@ export { default as TrashIcon } from './TrashIcon'
153
153
  export { default as UploadIcon } from './UploadIcon'
154
154
  export { default as UserIcon } from './UserIcon'
155
155
  export { default as ViewIcon } from './ViewIcon'
156
- export { default as ZoomInIcon } from './ZoomInIcon'
156
+ export { default as ZoomInIcon } from './ZoomInIcon'
157
+ export { default as ZoomOutIcon } from './ZoomOutIcon'
@@ -153,4 +153,5 @@ module.exports.TrashIcon = require("./TrashIcon.js")
153
153
  module.exports.UploadIcon = require("./UploadIcon.js")
154
154
  module.exports.UserIcon = require("./UserIcon.js")
155
155
  module.exports.ViewIcon = require("./ViewIcon.js")
156
- module.exports.ZoomInIcon = require("./ZoomInIcon.js")
156
+ module.exports.ZoomInIcon = require("./ZoomInIcon.js")
157
+ module.exports.ZoomOutIcon = require("./ZoomOutIcon.js")
@@ -15,9 +15,9 @@ function ShareIcon({
15
15
  }, props), title ? /*#__PURE__*/React.createElement("title", {
16
16
  id: titleId
17
17
  }, title) : null, /*#__PURE__*/React.createElement("path", {
18
- d: "M5.3 5.76a.75.75 0 0 1-1.1-1.02l3.25-3.5a.75.75 0 0 1 1.1 0l3.25 3.5a.749.749 0 1 1-1.1 1.02l-1.95-2.1v6.59a.75.75 0 1 1-1.5 0V3.66z"
18
+ d: "M5.75 7a.25.25 0 0 1 .25.25v3l.01.204A2 2 0 0 0 8 12.25l.204-.01A2 2 0 0 0 10 10.25V7h1.75A2.25 2.25 0 0 1 14 9.25v3.5A2.25 2.25 0 0 1 11.75 15h-7.5A2.25 2.25 0 0 1 2 12.75v-3.5A2.25 2.25 0 0 1 4.25 7z"
19
19
  }), /*#__PURE__*/React.createElement("path", {
20
- d: "M2 9.25A2.25 2.25 0 0 1 4.25 7H5a.75.75 0 1 1 0 1.5h-.75a.75.75 0 0 0-.75.75v3.5c0 .414.336.75.75.75h7.5a.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-.75-.75H11A.75.75 0 1 1 11 7h.75A2.25 2.25 0 0 1 14 9.25v3.5A2.25 2.25 0 0 1 11.75 15h-7.5A2.25 2.25 0 0 1 2 12.75z"
20
+ d: "M8 1a.75.75 0 0 1 .55.24l3.25 3.5a.75.75 0 1 1-1.1 1.02l-1.95-2.1v6.59a.75.75 0 0 1-1.5 0V3.66L5.3 5.76a.75.75 0 1 1-1.1-1.02l3.25-3.5A.751.751 0 0 1 8 1"
21
21
  }));
22
22
  }
23
23
  const ForwardRef = React.forwardRef(ShareIcon);
@@ -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;
@@ -15,9 +15,9 @@ function ShareIcon({
15
15
  }, props), title ? /*#__PURE__*/React.createElement("title", {
16
16
  id: titleId
17
17
  }, title) : null, /*#__PURE__*/React.createElement("path", {
18
- d: "M5.3 5.76a.75.75 0 0 1-1.1-1.02l3.25-3.5a.75.75 0 0 1 1.1 0l3.25 3.5a.749.749 0 1 1-1.1 1.02l-1.95-2.1v6.59a.75.75 0 1 1-1.5 0V3.66z"
18
+ d: "M5.75 7a.25.25 0 0 1 .25.25v3l.01.204A2 2 0 0 0 8 12.25l.204-.01A2 2 0 0 0 10 10.25V7h1.75A2.25 2.25 0 0 1 14 9.25v3.5A2.25 2.25 0 0 1 11.75 15h-7.5A2.25 2.25 0 0 1 2 12.75v-3.5A2.25 2.25 0 0 1 4.25 7z"
19
19
  }), /*#__PURE__*/React.createElement("path", {
20
- d: "M2 9.25A2.25 2.25 0 0 1 4.25 7H5a.75.75 0 1 1 0 1.5h-.75a.75.75 0 0 0-.75.75v3.5c0 .414.336.75.75.75h7.5a.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-.75-.75H11A.75.75 0 1 1 11 7h.75A2.25 2.25 0 0 1 14 9.25v3.5A2.25 2.25 0 0 1 11.75 15h-7.5A2.25 2.25 0 0 1 2 12.75z"
20
+ d: "M8 1a.75.75 0 0 1 .55.24l3.25 3.5a.75.75 0 1 1-1.1 1.02l-1.95-2.1v6.59a.75.75 0 0 1-1.5 0V3.66L5.3 5.76a.75.75 0 1 1-1.1-1.02l3.25-3.5A.751.751 0 0 1 8 1"
21
21
  }));
22
22
  }
23
23
  const ForwardRef = React.forwardRef(ShareIcon);
@@ -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;
@@ -153,4 +153,5 @@ export { default as TrashIcon } from './TrashIcon'
153
153
  export { default as UploadIcon } from './UploadIcon'
154
154
  export { default as UserIcon } from './UserIcon'
155
155
  export { default as ViewIcon } from './ViewIcon'
156
- export { default as ZoomInIcon } from './ZoomInIcon'
156
+ export { default as ZoomInIcon } from './ZoomInIcon'
157
+ export { default as ZoomOutIcon } from './ZoomOutIcon'
@@ -153,4 +153,5 @@ export { default as TrashIcon } from './TrashIcon.js'
153
153
  export { default as UploadIcon } from './UploadIcon.js'
154
154
  export { default as UserIcon } from './UserIcon.js'
155
155
  export { default as ViewIcon } from './ViewIcon.js'
156
- export { default as ZoomInIcon } from './ZoomInIcon.js'
156
+ export { default as ZoomInIcon } from './ZoomInIcon.js'
157
+ export { default as ZoomOutIcon } from './ZoomOutIcon.js'
@@ -153,4 +153,5 @@ export { default as TrashIcon } from './TrashIcon'
153
153
  export { default as UploadIcon } from './UploadIcon'
154
154
  export { default as UserIcon } from './UserIcon'
155
155
  export { default as ViewIcon } from './ViewIcon'
156
- export { default as ZoomInIcon } from './ZoomInIcon'
156
+ export { default as ZoomInIcon } from './ZoomInIcon'
157
+ export { default as ZoomOutIcon } from './ZoomOutIcon'
package/16/solid/index.js CHANGED
@@ -153,4 +153,5 @@ module.exports.TrashIcon = require("./TrashIcon.js")
153
153
  module.exports.UploadIcon = require("./UploadIcon.js")
154
154
  module.exports.UserIcon = require("./UserIcon.js")
155
155
  module.exports.ViewIcon = require("./ViewIcon.js")
156
- module.exports.ZoomInIcon = require("./ZoomInIcon.js")
156
+ module.exports.ZoomInIcon = require("./ZoomInIcon.js")
157
+ module.exports.ZoomOutIcon = require("./ZoomOutIcon.js")
@@ -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 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;
@@ -153,4 +153,5 @@ export { default as TrashIcon } from './TrashIcon'
153
153
  export { default as UploadIcon } from './UploadIcon'
154
154
  export { default as UserIcon } from './UserIcon'
155
155
  export { default as ViewIcon } from './ViewIcon'
156
- export { default as ZoomInIcon } from './ZoomInIcon'
156
+ export { default as ZoomInIcon } from './ZoomInIcon'
157
+ export { default as ZoomOutIcon } from './ZoomOutIcon'
@@ -153,4 +153,5 @@ export { default as TrashIcon } from './TrashIcon.js'
153
153
  export { default as UploadIcon } from './UploadIcon.js'
154
154
  export { default as UserIcon } from './UserIcon.js'
155
155
  export { default as ViewIcon } from './ViewIcon.js'
156
- export { default as ZoomInIcon } from './ZoomInIcon.js'
156
+ export { default as ZoomInIcon } from './ZoomInIcon.js'
157
+ export { default as ZoomOutIcon } from './ZoomOutIcon.js'
@@ -153,4 +153,5 @@ export { default as TrashIcon } from './TrashIcon'
153
153
  export { default as UploadIcon } from './UploadIcon'
154
154
  export { default as UserIcon } from './UserIcon'
155
155
  export { default as ViewIcon } from './ViewIcon'
156
- export { default as ZoomInIcon } from './ZoomInIcon'
156
+ export { default as ZoomInIcon } from './ZoomInIcon'
157
+ export { default as ZoomOutIcon } from './ZoomOutIcon'
@@ -153,4 +153,5 @@ module.exports.TrashIcon = require("./TrashIcon.js")
153
153
  module.exports.UploadIcon = require("./UploadIcon.js")
154
154
  module.exports.UserIcon = require("./UserIcon.js")
155
155
  module.exports.ViewIcon = require("./ViewIcon.js")
156
- module.exports.ZoomInIcon = require("./ZoomInIcon.js")
156
+ module.exports.ZoomInIcon = require("./ZoomInIcon.js")
157
+ module.exports.ZoomOutIcon = require("./ZoomOutIcon.js")
@@ -15,9 +15,9 @@ function ShareIcon({
15
15
  }, props), title ? /*#__PURE__*/React.createElement("title", {
16
16
  id: titleId
17
17
  }, title) : null, /*#__PURE__*/React.createElement("path", {
18
- d: "M8.295 6.765a.75.75 0 1 1-1.09-1.03l4.25-4.5a.75.75 0 0 1 1.09 0l4.25 4.5a.75.75 0 0 1-1.09 1.03L12.75 3.636V14.25a.75.75 0 1 1-1.5 0V3.636z"
18
+ d: "M10 14.25a2 2 0 1 0 4 0V9h4.25A2.75 2.75 0 0 1 21 11.75v8.5A2.75 2.75 0 0 1 18.25 23H5.75A2.75 2.75 0 0 1 3 20.25v-8.5A2.75 2.75 0 0 1 5.75 9H10z"
19
19
  }), /*#__PURE__*/React.createElement("path", {
20
- d: "M5.75 10.5c-.69 0-1.25.56-1.25 1.25v8.5c0 .69.56 1.25 1.25 1.25h12.5c.69 0 1.25-.56 1.25-1.25v-8.5c0-.69-.56-1.25-1.25-1.25H15.5a.75.75 0 1 1 0-1.5h2.75A2.75 2.75 0 0 1 21 11.75v8.5A2.75 2.75 0 0 1 18.25 23H5.75A2.75 2.75 0 0 1 3 20.25v-8.5A2.75 2.75 0 0 1 5.75 9H8.5a.75.75 0 0 1 0 1.5z"
20
+ d: "M12 1a.751.751 0 0 1 .545.235l4.25 4.5a.749.749 0 0 1-1.09 1.03l-2.955-3.13V14.25a.75.75 0 0 1-1.5 0V3.636L8.295 6.765a.75.75 0 0 1-.82.199.75.75 0 0 1-.27-1.229l4.25-4.5A.75.75 0 0 1 12 1"
21
21
  }));
22
22
  }
23
23
  const ForwardRef = React.forwardRef(ShareIcon);
@@ -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;
@@ -15,9 +15,9 @@ function ShareIcon({
15
15
  }, props), title ? /*#__PURE__*/React.createElement("title", {
16
16
  id: titleId
17
17
  }, title) : null, /*#__PURE__*/React.createElement("path", {
18
- d: "M8.295 6.765a.75.75 0 1 1-1.09-1.03l4.25-4.5a.75.75 0 0 1 1.09 0l4.25 4.5a.75.75 0 0 1-1.09 1.03L12.75 3.636V14.25a.75.75 0 1 1-1.5 0V3.636z"
18
+ d: "M10 14.25a2 2 0 1 0 4 0V9h4.25A2.75 2.75 0 0 1 21 11.75v8.5A2.75 2.75 0 0 1 18.25 23H5.75A2.75 2.75 0 0 1 3 20.25v-8.5A2.75 2.75 0 0 1 5.75 9H10z"
19
19
  }), /*#__PURE__*/React.createElement("path", {
20
- d: "M5.75 10.5c-.69 0-1.25.56-1.25 1.25v8.5c0 .69.56 1.25 1.25 1.25h12.5c.69 0 1.25-.56 1.25-1.25v-8.5c0-.69-.56-1.25-1.25-1.25H15.5a.75.75 0 1 1 0-1.5h2.75A2.75 2.75 0 0 1 21 11.75v8.5A2.75 2.75 0 0 1 18.25 23H5.75A2.75 2.75 0 0 1 3 20.25v-8.5A2.75 2.75 0 0 1 5.75 9H8.5a.75.75 0 0 1 0 1.5z"
20
+ d: "M12 1a.751.751 0 0 1 .545.235l4.25 4.5a.749.749 0 0 1-1.09 1.03l-2.955-3.13V14.25a.75.75 0 0 1-1.5 0V3.636L8.295 6.765a.75.75 0 0 1-.82.199.75.75 0 0 1-.27-1.229l4.25-4.5A.75.75 0 0 1 12 1"
21
21
  }));
22
22
  }
23
23
  const ForwardRef = React.forwardRef(ShareIcon);
@@ -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;
@@ -153,4 +153,5 @@ export { default as TrashIcon } from './TrashIcon'
153
153
  export { default as UploadIcon } from './UploadIcon'
154
154
  export { default as UserIcon } from './UserIcon'
155
155
  export { default as ViewIcon } from './ViewIcon'
156
- export { default as ZoomInIcon } from './ZoomInIcon'
156
+ export { default as ZoomInIcon } from './ZoomInIcon'
157
+ export { default as ZoomOutIcon } from './ZoomOutIcon'
@@ -153,4 +153,5 @@ export { default as TrashIcon } from './TrashIcon.js'
153
153
  export { default as UploadIcon } from './UploadIcon.js'
154
154
  export { default as UserIcon } from './UserIcon.js'
155
155
  export { default as ViewIcon } from './ViewIcon.js'
156
- export { default as ZoomInIcon } from './ZoomInIcon.js'
156
+ export { default as ZoomInIcon } from './ZoomInIcon.js'
157
+ export { default as ZoomOutIcon } from './ZoomOutIcon.js'
@@ -153,4 +153,5 @@ export { default as TrashIcon } from './TrashIcon'
153
153
  export { default as UploadIcon } from './UploadIcon'
154
154
  export { default as UserIcon } from './UserIcon'
155
155
  export { default as ViewIcon } from './ViewIcon'
156
- export { default as ZoomInIcon } from './ZoomInIcon'
156
+ export { default as ZoomInIcon } from './ZoomInIcon'
157
+ export { default as ZoomOutIcon } from './ZoomOutIcon'
package/24/solid/index.js CHANGED
@@ -153,4 +153,5 @@ module.exports.TrashIcon = require("./TrashIcon.js")
153
153
  module.exports.UploadIcon = require("./UploadIcon.js")
154
154
  module.exports.UserIcon = require("./UserIcon.js")
155
155
  module.exports.ViewIcon = require("./ViewIcon.js")
156
- module.exports.ZoomInIcon = require("./ZoomInIcon.js")
156
+ module.exports.ZoomInIcon = require("./ZoomInIcon.js")
157
+ module.exports.ZoomOutIcon = require("./ZoomOutIcon.js")
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "metal-icons",
3
3
  "license": "MIT",
4
- "version": "0.2.9",
4
+ "version": "0.2.11",
5
5
  "description": "A flexible React icon library.",
6
6
  "keywords": [
7
7
  "design",