metal-icons 0.2.8 → 0.2.10

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 PrinterIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default PrinterIcon;
@@ -0,0 +1,23 @@
1
+ const React = require("react");
2
+ function PrinterIcon({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }, svgRef) {
7
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ width: 16,
10
+ height: 16,
11
+ fill: "currentColor",
12
+ viewBox: "0 0 16 16",
13
+ ref: svgRef,
14
+ "aria-labelledby": titleId
15
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
16
+ id: titleId
17
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
18
+ fillRule: "evenodd",
19
+ d: "M2.25 5H3V3.25A2.25 2.25 0 0 1 5.25 1h5.5A2.25 2.25 0 0 1 13 3.25V5h.75A2.25 2.25 0 0 1 16 7.25v3.5A2.25 2.25 0 0 1 13.75 13H12.5v.75c0 .69-.56 1.25-1.25 1.25h-6.5c-.69 0-1.25-.56-1.25-1.25V13H2.25A2.25 2.25 0 0 1 0 10.75v-3.5A2.25 2.25 0 0 1 2.25 5m3-2.5a.75.75 0 0 0-.75.75V5h7V3.25a.75.75 0 0 0-.75-.75zm-1.75 9V9.75c0-.69.56-1.25 1.25-1.25h6.5c.69 0 1.25.56 1.25 1.25v1.75h1.25a.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-.75-.75H2.25a.75.75 0 0 0-.75.75v3.5c0 .414.336.75.75.75zm7.5 2H5V10h6z"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(PrinterIcon);
23
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const PrinterIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default PrinterIcon;
@@ -0,0 +1,23 @@
1
+ import * as React from "react";
2
+ function PrinterIcon({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }, svgRef) {
7
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ width: 16,
10
+ height: 16,
11
+ fill: "currentColor",
12
+ viewBox: "0 0 16 16",
13
+ ref: svgRef,
14
+ "aria-labelledby": titleId
15
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
16
+ id: titleId
17
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
18
+ fillRule: "evenodd",
19
+ d: "M2.25 5H3V3.25A2.25 2.25 0 0 1 5.25 1h5.5A2.25 2.25 0 0 1 13 3.25V5h.75A2.25 2.25 0 0 1 16 7.25v3.5A2.25 2.25 0 0 1 13.75 13H12.5v.75c0 .69-.56 1.25-1.25 1.25h-6.5c-.69 0-1.25-.56-1.25-1.25V13H2.25A2.25 2.25 0 0 1 0 10.75v-3.5A2.25 2.25 0 0 1 2.25 5m3-2.5a.75.75 0 0 0-.75.75V5h7V3.25a.75.75 0 0 0-.75-.75zm-1.75 9V9.75c0-.69.56-1.25 1.25-1.25h6.5c.69 0 1.25.56 1.25 1.25v1.75h1.25a.75.75 0 0 0 .75-.75v-3.5a.75.75 0 0 0-.75-.75H2.25a.75.75 0 0 0-.75.75v3.5c0 .414.336.75.75.75zm7.5 2H5V10h6z"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(PrinterIcon);
23
+ export default ForwardRef;
@@ -119,6 +119,7 @@ export { default as PencilIcon } from './PencilIcon'
119
119
  export { default as PhoneIcon } from './PhoneIcon'
120
120
  export { default as PinIcon } from './PinIcon'
121
121
  export { default as PlusIcon } from './PlusIcon'
122
+ export { default as PrinterIcon } from './PrinterIcon'
122
123
  export { default as RedirectIcon } from './RedirectIcon'
123
124
  export { default as ReloadIcon } from './ReloadIcon'
124
125
  export { default as RepeatIcon } from './RepeatIcon'
@@ -119,6 +119,7 @@ export { default as PencilIcon } from './PencilIcon.js'
119
119
  export { default as PhoneIcon } from './PhoneIcon.js'
120
120
  export { default as PinIcon } from './PinIcon.js'
121
121
  export { default as PlusIcon } from './PlusIcon.js'
122
+ export { default as PrinterIcon } from './PrinterIcon.js'
122
123
  export { default as RedirectIcon } from './RedirectIcon.js'
123
124
  export { default as ReloadIcon } from './ReloadIcon.js'
124
125
  export { default as RepeatIcon } from './RepeatIcon.js'
@@ -119,6 +119,7 @@ export { default as PencilIcon } from './PencilIcon'
119
119
  export { default as PhoneIcon } from './PhoneIcon'
120
120
  export { default as PinIcon } from './PinIcon'
121
121
  export { default as PlusIcon } from './PlusIcon'
122
+ export { default as PrinterIcon } from './PrinterIcon'
122
123
  export { default as RedirectIcon } from './RedirectIcon'
123
124
  export { default as ReloadIcon } from './ReloadIcon'
124
125
  export { default as RepeatIcon } from './RepeatIcon'
@@ -119,6 +119,7 @@ module.exports.PencilIcon = require("./PencilIcon.js")
119
119
  module.exports.PhoneIcon = require("./PhoneIcon.js")
120
120
  module.exports.PinIcon = require("./PinIcon.js")
121
121
  module.exports.PlusIcon = require("./PlusIcon.js")
122
+ module.exports.PrinterIcon = require("./PrinterIcon.js")
122
123
  module.exports.RedirectIcon = require("./RedirectIcon.js")
123
124
  module.exports.ReloadIcon = require("./ReloadIcon.js")
124
125
  module.exports.RepeatIcon = require("./RepeatIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const PrinterIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default PrinterIcon;
@@ -0,0 +1,23 @@
1
+ const React = require("react");
2
+ function PrinterIcon({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }, svgRef) {
7
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ width: 16,
10
+ height: 16,
11
+ fill: "currentColor",
12
+ viewBox: "0 0 16 16",
13
+ ref: svgRef,
14
+ "aria-labelledby": titleId
15
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
16
+ id: titleId
17
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
18
+ fillRule: "evenodd",
19
+ d: "M2.25 5H3V3.25A2.25 2.25 0 0 1 5.25 1h5.5A2.25 2.25 0 0 1 13 3.25V5h.75A2.25 2.25 0 0 1 16 7.25v3.5A2.25 2.25 0 0 1 13.75 13H12.5v.75c0 .69-.56 1.25-1.25 1.25h-6.5c-.69 0-1.25-.56-1.25-1.25V13H2.25A2.25 2.25 0 0 1 0 10.75v-3.5A2.25 2.25 0 0 1 2.25 5m3-2.5a.75.75 0 0 0-.75.75V5h7V3.25a.75.75 0 0 0-.75-.75zm5.75 11H5V10h6z"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(PrinterIcon);
23
+ 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 PrinterIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default PrinterIcon;
@@ -0,0 +1,23 @@
1
+ import * as React from "react";
2
+ function PrinterIcon({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }, svgRef) {
7
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ width: 16,
10
+ height: 16,
11
+ fill: "currentColor",
12
+ viewBox: "0 0 16 16",
13
+ ref: svgRef,
14
+ "aria-labelledby": titleId
15
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
16
+ id: titleId
17
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
18
+ fillRule: "evenodd",
19
+ d: "M2.25 5H3V3.25A2.25 2.25 0 0 1 5.25 1h5.5A2.25 2.25 0 0 1 13 3.25V5h.75A2.25 2.25 0 0 1 16 7.25v3.5A2.25 2.25 0 0 1 13.75 13H12.5v.75c0 .69-.56 1.25-1.25 1.25h-6.5c-.69 0-1.25-.56-1.25-1.25V13H2.25A2.25 2.25 0 0 1 0 10.75v-3.5A2.25 2.25 0 0 1 2.25 5m3-2.5a.75.75 0 0 0-.75.75V5h7V3.25a.75.75 0 0 0-.75-.75zm5.75 11H5V10h6z"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(PrinterIcon);
23
+ export default 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);
@@ -119,6 +119,7 @@ export { default as PencilIcon } from './PencilIcon'
119
119
  export { default as PhoneIcon } from './PhoneIcon'
120
120
  export { default as PinIcon } from './PinIcon'
121
121
  export { default as PlusIcon } from './PlusIcon'
122
+ export { default as PrinterIcon } from './PrinterIcon'
122
123
  export { default as RedirectIcon } from './RedirectIcon'
123
124
  export { default as ReloadIcon } from './ReloadIcon'
124
125
  export { default as RepeatIcon } from './RepeatIcon'
@@ -119,6 +119,7 @@ export { default as PencilIcon } from './PencilIcon.js'
119
119
  export { default as PhoneIcon } from './PhoneIcon.js'
120
120
  export { default as PinIcon } from './PinIcon.js'
121
121
  export { default as PlusIcon } from './PlusIcon.js'
122
+ export { default as PrinterIcon } from './PrinterIcon.js'
122
123
  export { default as RedirectIcon } from './RedirectIcon.js'
123
124
  export { default as ReloadIcon } from './ReloadIcon.js'
124
125
  export { default as RepeatIcon } from './RepeatIcon.js'
@@ -119,6 +119,7 @@ export { default as PencilIcon } from './PencilIcon'
119
119
  export { default as PhoneIcon } from './PhoneIcon'
120
120
  export { default as PinIcon } from './PinIcon'
121
121
  export { default as PlusIcon } from './PlusIcon'
122
+ export { default as PrinterIcon } from './PrinterIcon'
122
123
  export { default as RedirectIcon } from './RedirectIcon'
123
124
  export { default as ReloadIcon } from './ReloadIcon'
124
125
  export { default as RepeatIcon } from './RepeatIcon'
package/16/solid/index.js CHANGED
@@ -119,6 +119,7 @@ module.exports.PencilIcon = require("./PencilIcon.js")
119
119
  module.exports.PhoneIcon = require("./PhoneIcon.js")
120
120
  module.exports.PinIcon = require("./PinIcon.js")
121
121
  module.exports.PlusIcon = require("./PlusIcon.js")
122
+ module.exports.PrinterIcon = require("./PrinterIcon.js")
122
123
  module.exports.RedirectIcon = require("./RedirectIcon.js")
123
124
  module.exports.ReloadIcon = require("./ReloadIcon.js")
124
125
  module.exports.RepeatIcon = require("./RepeatIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const PrinterIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default PrinterIcon;
@@ -0,0 +1,25 @@
1
+ const React = require("react");
2
+ function PrinterIcon({
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.7 10.95a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5z"
19
+ }), /*#__PURE__*/React.createElement("path", {
20
+ fillRule: "evenodd",
21
+ d: "M16.25 1A2.75 2.75 0 0 1 19 3.75V8h1.25A2.75 2.75 0 0 1 23 10.75v5.5A2.75 2.75 0 0 1 20.25 19H19v2.25A1.75 1.75 0 0 1 17.25 23H6.75A1.75 1.75 0 0 1 5 21.25V19H3.75A2.75 2.75 0 0 1 1 16.25v-5.5A2.75 2.75 0 0 1 3.75 8H5V3.75A2.75 2.75 0 0 1 7.75 1zm-9.5 14.5a.25.25 0 0 0-.25.25v5.5a.25.25 0 0 0 .25.25h10.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25zm-3-6c-.69 0-1.25.56-1.25 1.25v5.5c0 .69.56 1.25 1.25 1.25H5v-1.75c0-.966.784-1.75 1.75-1.75h10.5c.966 0 1.75.784 1.75 1.75v1.75h1.25c.69 0 1.25-.56 1.25-1.25v-5.5c0-.69-.56-1.25-1.25-1.25zm4-7c-.69 0-1.25.56-1.25 1.25V8h11V3.75c0-.69-.56-1.25-1.25-1.25z"
22
+ }));
23
+ }
24
+ const ForwardRef = React.forwardRef(PrinterIcon);
25
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const PrinterIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default PrinterIcon;
@@ -0,0 +1,25 @@
1
+ import * as React from "react";
2
+ function PrinterIcon({
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.7 10.95a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5z"
19
+ }), /*#__PURE__*/React.createElement("path", {
20
+ fillRule: "evenodd",
21
+ d: "M16.25 1A2.75 2.75 0 0 1 19 3.75V8h1.25A2.75 2.75 0 0 1 23 10.75v5.5A2.75 2.75 0 0 1 20.25 19H19v2.25A1.75 1.75 0 0 1 17.25 23H6.75A1.75 1.75 0 0 1 5 21.25V19H3.75A2.75 2.75 0 0 1 1 16.25v-5.5A2.75 2.75 0 0 1 3.75 8H5V3.75A2.75 2.75 0 0 1 7.75 1zm-9.5 14.5a.25.25 0 0 0-.25.25v5.5a.25.25 0 0 0 .25.25h10.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25zm-3-6c-.69 0-1.25.56-1.25 1.25v5.5c0 .69.56 1.25 1.25 1.25H5v-1.75c0-.966.784-1.75 1.75-1.75h10.5c.966 0 1.75.784 1.75 1.75v1.75h1.25c.69 0 1.25-.56 1.25-1.25v-5.5c0-.69-.56-1.25-1.25-1.25zm4-7c-.69 0-1.25.56-1.25 1.25V8h11V3.75c0-.69-.56-1.25-1.25-1.25z"
22
+ }));
23
+ }
24
+ const ForwardRef = React.forwardRef(PrinterIcon);
25
+ export default ForwardRef;
@@ -119,6 +119,7 @@ export { default as PencilIcon } from './PencilIcon'
119
119
  export { default as PhoneIcon } from './PhoneIcon'
120
120
  export { default as PinIcon } from './PinIcon'
121
121
  export { default as PlusIcon } from './PlusIcon'
122
+ export { default as PrinterIcon } from './PrinterIcon'
122
123
  export { default as RedirectIcon } from './RedirectIcon'
123
124
  export { default as ReloadIcon } from './ReloadIcon'
124
125
  export { default as RepeatIcon } from './RepeatIcon'
@@ -119,6 +119,7 @@ export { default as PencilIcon } from './PencilIcon.js'
119
119
  export { default as PhoneIcon } from './PhoneIcon.js'
120
120
  export { default as PinIcon } from './PinIcon.js'
121
121
  export { default as PlusIcon } from './PlusIcon.js'
122
+ export { default as PrinterIcon } from './PrinterIcon.js'
122
123
  export { default as RedirectIcon } from './RedirectIcon.js'
123
124
  export { default as ReloadIcon } from './ReloadIcon.js'
124
125
  export { default as RepeatIcon } from './RepeatIcon.js'
@@ -119,6 +119,7 @@ export { default as PencilIcon } from './PencilIcon'
119
119
  export { default as PhoneIcon } from './PhoneIcon'
120
120
  export { default as PinIcon } from './PinIcon'
121
121
  export { default as PlusIcon } from './PlusIcon'
122
+ export { default as PrinterIcon } from './PrinterIcon'
122
123
  export { default as RedirectIcon } from './RedirectIcon'
123
124
  export { default as ReloadIcon } from './ReloadIcon'
124
125
  export { default as RepeatIcon } from './RepeatIcon'
@@ -119,6 +119,7 @@ module.exports.PencilIcon = require("./PencilIcon.js")
119
119
  module.exports.PhoneIcon = require("./PhoneIcon.js")
120
120
  module.exports.PinIcon = require("./PinIcon.js")
121
121
  module.exports.PlusIcon = require("./PlusIcon.js")
122
+ module.exports.PrinterIcon = require("./PrinterIcon.js")
122
123
  module.exports.RedirectIcon = require("./RedirectIcon.js")
123
124
  module.exports.ReloadIcon = require("./ReloadIcon.js")
124
125
  module.exports.RepeatIcon = require("./RepeatIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const PrinterIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default PrinterIcon;
@@ -0,0 +1,23 @@
1
+ const React = require("react");
2
+ function PrinterIcon({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }, svgRef) {
7
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ width: 24,
10
+ height: 24,
11
+ fill: "currentColor",
12
+ viewBox: "0 0 24 24",
13
+ ref: svgRef,
14
+ "aria-labelledby": titleId
15
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
16
+ id: titleId
17
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
18
+ fillRule: "evenodd",
19
+ d: "M16.25 1A2.75 2.75 0 0 1 19 3.75V8h1.25A2.75 2.75 0 0 1 23 10.75v5.5A2.75 2.75 0 0 1 20.25 19H19v2.25A1.75 1.75 0 0 1 17.25 23H6.75A1.75 1.75 0 0 1 5 21.25V19H3.75A2.75 2.75 0 0 1 1 16.25v-5.5A2.75 2.75 0 0 1 3.75 8H5V3.75A2.75 2.75 0 0 1 7.75 1zm-9.5 14.5a.25.25 0 0 0-.25.25v5.5a.25.25 0 0 0 .25.25h10.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25zM4.7 10.95a.75.75 0 0 0 0 1.5h2a.75.75 0 0 0 0-1.5zM7.75 2.5c-.69 0-1.25.56-1.25 1.25V8h11V3.75c0-.69-.56-1.25-1.25-1.25z"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(PrinterIcon);
23
+ 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 PrinterIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default PrinterIcon;
@@ -0,0 +1,23 @@
1
+ import * as React from "react";
2
+ function PrinterIcon({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }, svgRef) {
7
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ width: 24,
10
+ height: 24,
11
+ fill: "currentColor",
12
+ viewBox: "0 0 24 24",
13
+ ref: svgRef,
14
+ "aria-labelledby": titleId
15
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
16
+ id: titleId
17
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
18
+ fillRule: "evenodd",
19
+ d: "M16.25 1A2.75 2.75 0 0 1 19 3.75V8h1.25A2.75 2.75 0 0 1 23 10.75v5.5A2.75 2.75 0 0 1 20.25 19H19v2.25A1.75 1.75 0 0 1 17.25 23H6.75A1.75 1.75 0 0 1 5 21.25V19H3.75A2.75 2.75 0 0 1 1 16.25v-5.5A2.75 2.75 0 0 1 3.75 8H5V3.75A2.75 2.75 0 0 1 7.75 1zm-9.5 14.5a.25.25 0 0 0-.25.25v5.5a.25.25 0 0 0 .25.25h10.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25zM4.7 10.95a.75.75 0 0 0 0 1.5h2a.75.75 0 0 0 0-1.5zM7.75 2.5c-.69 0-1.25.56-1.25 1.25V8h11V3.75c0-.69-.56-1.25-1.25-1.25z"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(PrinterIcon);
23
+ export default 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);
@@ -119,6 +119,7 @@ export { default as PencilIcon } from './PencilIcon'
119
119
  export { default as PhoneIcon } from './PhoneIcon'
120
120
  export { default as PinIcon } from './PinIcon'
121
121
  export { default as PlusIcon } from './PlusIcon'
122
+ export { default as PrinterIcon } from './PrinterIcon'
122
123
  export { default as RedirectIcon } from './RedirectIcon'
123
124
  export { default as ReloadIcon } from './ReloadIcon'
124
125
  export { default as RepeatIcon } from './RepeatIcon'
@@ -119,6 +119,7 @@ export { default as PencilIcon } from './PencilIcon.js'
119
119
  export { default as PhoneIcon } from './PhoneIcon.js'
120
120
  export { default as PinIcon } from './PinIcon.js'
121
121
  export { default as PlusIcon } from './PlusIcon.js'
122
+ export { default as PrinterIcon } from './PrinterIcon.js'
122
123
  export { default as RedirectIcon } from './RedirectIcon.js'
123
124
  export { default as ReloadIcon } from './ReloadIcon.js'
124
125
  export { default as RepeatIcon } from './RepeatIcon.js'
@@ -119,6 +119,7 @@ export { default as PencilIcon } from './PencilIcon'
119
119
  export { default as PhoneIcon } from './PhoneIcon'
120
120
  export { default as PinIcon } from './PinIcon'
121
121
  export { default as PlusIcon } from './PlusIcon'
122
+ export { default as PrinterIcon } from './PrinterIcon'
122
123
  export { default as RedirectIcon } from './RedirectIcon'
123
124
  export { default as ReloadIcon } from './ReloadIcon'
124
125
  export { default as RepeatIcon } from './RepeatIcon'
package/24/solid/index.js CHANGED
@@ -119,6 +119,7 @@ module.exports.PencilIcon = require("./PencilIcon.js")
119
119
  module.exports.PhoneIcon = require("./PhoneIcon.js")
120
120
  module.exports.PinIcon = require("./PinIcon.js")
121
121
  module.exports.PlusIcon = require("./PlusIcon.js")
122
+ module.exports.PrinterIcon = require("./PrinterIcon.js")
122
123
  module.exports.RedirectIcon = require("./RedirectIcon.js")
123
124
  module.exports.ReloadIcon = require("./ReloadIcon.js")
124
125
  module.exports.RepeatIcon = require("./RepeatIcon.js")
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Metal Icons
2
2
 
3
- A flexible set of icons built for React.
3
+ A clean, reliable icon set built for React.
4
4
 
5
5
  ---
6
6
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "metal-icons",
3
3
  "license": "MIT",
4
- "version": "0.2.8",
4
+ "version": "0.2.10",
5
5
  "description": "A flexible React icon library.",
6
6
  "keywords": [
7
7
  "design",
@@ -153,6 +153,6 @@
153
153
  "access": "public"
154
154
  },
155
155
  "peerDependencies": {
156
- "react": "^16.x || ^17.x || ^18.x || ^19.0.0 || ^19.0.0-rc"
156
+ "react": "^18.2.0"
157
157
  }
158
158
  }