metal-icons 0.2.8 → 0.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/16/outline/PrinterIcon.d.ts +3 -0
- package/16/outline/PrinterIcon.js +23 -0
- package/16/outline/esm/PrinterIcon.d.ts +3 -0
- package/16/outline/esm/PrinterIcon.js +23 -0
- package/16/outline/esm/index.d.ts +1 -0
- package/16/outline/esm/index.js +1 -0
- package/16/outline/index.d.ts +1 -0
- package/16/outline/index.js +1 -0
- package/16/solid/PrinterIcon.d.ts +3 -0
- package/16/solid/PrinterIcon.js +23 -0
- package/16/solid/esm/PrinterIcon.d.ts +3 -0
- package/16/solid/esm/PrinterIcon.js +23 -0
- package/16/solid/esm/index.d.ts +1 -0
- package/16/solid/esm/index.js +1 -0
- package/16/solid/index.d.ts +1 -0
- package/16/solid/index.js +1 -0
- package/24/outline/PrinterIcon.d.ts +3 -0
- package/24/outline/PrinterIcon.js +25 -0
- package/24/outline/esm/PrinterIcon.d.ts +3 -0
- package/24/outline/esm/PrinterIcon.js +25 -0
- package/24/outline/esm/index.d.ts +1 -0
- package/24/outline/esm/index.js +1 -0
- package/24/outline/index.d.ts +1 -0
- package/24/outline/index.js +1 -0
- package/24/solid/PrinterIcon.d.ts +3 -0
- package/24/solid/PrinterIcon.js +23 -0
- package/24/solid/esm/PrinterIcon.d.ts +3 -0
- package/24/solid/esm/PrinterIcon.js +23 -0
- package/24/solid/esm/index.d.ts +1 -0
- package/24/solid/esm/index.js +1 -0
- package/24/solid/index.d.ts +1 -0
- package/24/solid/index.js +1 -0
- package/README.md +1 -1
- package/package.json +2 -2
|
@@ -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,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'
|
package/16/outline/esm/index.js
CHANGED
|
@@ -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'
|
package/16/outline/index.d.ts
CHANGED
|
@@ -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/outline/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,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;
|
|
@@ -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;
|
package/16/solid/esm/index.d.ts
CHANGED
|
@@ -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/esm/index.js
CHANGED
|
@@ -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'
|
package/16/solid/index.d.ts
CHANGED
|
@@ -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,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,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'
|
package/24/outline/esm/index.js
CHANGED
|
@@ -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'
|
package/24/outline/index.d.ts
CHANGED
|
@@ -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/outline/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,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;
|
|
@@ -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;
|
package/24/solid/esm/index.d.ts
CHANGED
|
@@ -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/esm/index.js
CHANGED
|
@@ -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'
|
package/24/solid/index.d.ts
CHANGED
|
@@ -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
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "metal-icons",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.9",
|
|
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": "^
|
|
156
|
+
"react": "^18.2.0"
|
|
157
157
|
}
|
|
158
158
|
}
|