metal-icons 0.2.3 → 0.2.4

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 PageIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default PageIcon;
@@ -0,0 +1,27 @@
1
+ const React = require("react");
2
+ function PageIcon({
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: "M2.65901.65901C3.08097.237053 3.65326 0 4.25 0h7.5c.5967 0 1.169.237053 1.591.65901.4219.42196.659.99425.659 1.59099v11.5c0 .5967-.2371 1.169-.659 1.591-.422.4219-.9943.659-1.591.659h-7.5c-.59674 0-1.16903-.2371-1.59099-.659C2.23705 14.919 2 14.3467 2 13.75V2.25c0-.59674.23705-1.16903.65901-1.59099m1.06066 1.06066C3.57902 1.86032 3.5 2.05109 3.5 2.25v11.5c0 .1989.07902.3897.21967.5303.14065.1407.33142.2197.53033.2197h7.5c.1989 0 .3897-.079.5303-.2197.1407-.1406.2197-.3314.2197-.5303V2.25c0-.19891-.079-.38968-.2197-.53033C12.1397 1.57902 11.9489 1.5 11.75 1.5h-7.5c-.19891 0-.38968.07902-.53033.21967"
21
+ }), /*#__PURE__*/React.createElement("path", {
22
+ fill: "currentColor",
23
+ d: "M5.74976 3c-.19892 0-.38968.07902-.53033.21967-.14066.14065-.21967.33142-.21967.53033s.07901.38968.21967.53033c.14065.14065.33141.21967.53033.21967h4.50004c.1989 0 .3896-.07902.5303-.21967.1406-.14065.2196-.33142.2196-.53033s-.079-.38968-.2196-.53033C10.6394 3.07902 10.4487 3 10.2498 3zm-.53033 3.21967C5.36008 6.07902 5.55084 6 5.74976 6h4.50004c.1989 0 .3896.07902.5303.21967.1406.14065.2196.33142.2196.53033s-.079.38968-.2196.53033c-.1407.14065-.3314.21967-.5303.21967H5.74976c-.19892 0-.38968-.07902-.53033-.21967-.14066-.14065-.21967-.33142-.21967-.53033s.07901-.38968.21967-.53033M5.74976 9c-.19892 0-.38968.07902-.53033.21967-.14066.14065-.21967.33142-.21967.53033s.07901.3897.21967.5303c.14065.1407.33141.2197.53033.2197h2c.19891 0 .38968-.079.53033-.2197.14065-.1406.21967-.33139.21967-.5303s-.07902-.38968-.21967-.53033S7.94867 9 7.74976 9z"
24
+ }));
25
+ }
26
+ const ForwardRef = React.forwardRef(PageIcon);
27
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const PageIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default PageIcon;
@@ -0,0 +1,27 @@
1
+ import * as React from "react";
2
+ function PageIcon({
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: "M2.65901.65901C3.08097.237053 3.65326 0 4.25 0h7.5c.5967 0 1.169.237053 1.591.65901.4219.42196.659.99425.659 1.59099v11.5c0 .5967-.2371 1.169-.659 1.591-.422.4219-.9943.659-1.591.659h-7.5c-.59674 0-1.16903-.2371-1.59099-.659C2.23705 14.919 2 14.3467 2 13.75V2.25c0-.59674.23705-1.16903.65901-1.59099m1.06066 1.06066C3.57902 1.86032 3.5 2.05109 3.5 2.25v11.5c0 .1989.07902.3897.21967.5303.14065.1407.33142.2197.53033.2197h7.5c.1989 0 .3897-.079.5303-.2197.1407-.1406.2197-.3314.2197-.5303V2.25c0-.19891-.079-.38968-.2197-.53033C12.1397 1.57902 11.9489 1.5 11.75 1.5h-7.5c-.19891 0-.38968.07902-.53033.21967"
21
+ }), /*#__PURE__*/React.createElement("path", {
22
+ fill: "currentColor",
23
+ d: "M5.74976 3c-.19892 0-.38968.07902-.53033.21967-.14066.14065-.21967.33142-.21967.53033s.07901.38968.21967.53033c.14065.14065.33141.21967.53033.21967h4.50004c.1989 0 .3896-.07902.5303-.21967.1406-.14065.2196-.33142.2196-.53033s-.079-.38968-.2196-.53033C10.6394 3.07902 10.4487 3 10.2498 3zm-.53033 3.21967C5.36008 6.07902 5.55084 6 5.74976 6h4.50004c.1989 0 .3896.07902.5303.21967.1406.14065.2196.33142.2196.53033s-.079.38968-.2196.53033c-.1407.14065-.3314.21967-.5303.21967H5.74976c-.19892 0-.38968-.07902-.53033-.21967-.14066-.14065-.21967-.33142-.21967-.53033s.07901-.38968.21967-.53033M5.74976 9c-.19892 0-.38968.07902-.53033.21967-.14066.14065-.21967.33142-.21967.53033s.07901.3897.21967.5303c.14065.1407.33141.2197.53033.2197h2c.19891 0 .38968-.079.53033-.2197.14065-.1406.21967-.33139.21967-.5303s-.07902-.38968-.21967-.53033S7.94867 9 7.74976 9z"
24
+ }));
25
+ }
26
+ const ForwardRef = React.forwardRef(PageIcon);
27
+ export default ForwardRef;
@@ -109,6 +109,7 @@ export { default as MinimizeIcon } from './MinimizeIcon'
109
109
  export { default as MonitorIcon } from './MonitorIcon'
110
110
  export { default as MoreAltIcon } from './MoreAltIcon'
111
111
  export { default as MoreIcon } from './MoreIcon'
112
+ export { default as PageIcon } from './PageIcon'
112
113
  export { default as PaperclipIcon } from './PaperclipIcon'
113
114
  export { default as PenLineIcon } from './PenLineIcon'
114
115
  export { default as PenIcon } from './PenIcon'
@@ -109,6 +109,7 @@ export { default as MinimizeIcon } from './MinimizeIcon.js'
109
109
  export { default as MonitorIcon } from './MonitorIcon.js'
110
110
  export { default as MoreAltIcon } from './MoreAltIcon.js'
111
111
  export { default as MoreIcon } from './MoreIcon.js'
112
+ export { default as PageIcon } from './PageIcon.js'
112
113
  export { default as PaperclipIcon } from './PaperclipIcon.js'
113
114
  export { default as PenLineIcon } from './PenLineIcon.js'
114
115
  export { default as PenIcon } from './PenIcon.js'
@@ -109,6 +109,7 @@ export { default as MinimizeIcon } from './MinimizeIcon'
109
109
  export { default as MonitorIcon } from './MonitorIcon'
110
110
  export { default as MoreAltIcon } from './MoreAltIcon'
111
111
  export { default as MoreIcon } from './MoreIcon'
112
+ export { default as PageIcon } from './PageIcon'
112
113
  export { default as PaperclipIcon } from './PaperclipIcon'
113
114
  export { default as PenLineIcon } from './PenLineIcon'
114
115
  export { default as PenIcon } from './PenIcon'
@@ -109,6 +109,7 @@ module.exports.MinimizeIcon = require("./MinimizeIcon.js")
109
109
  module.exports.MonitorIcon = require("./MonitorIcon.js")
110
110
  module.exports.MoreAltIcon = require("./MoreAltIcon.js")
111
111
  module.exports.MoreIcon = require("./MoreIcon.js")
112
+ module.exports.PageIcon = require("./PageIcon.js")
112
113
  module.exports.PaperclipIcon = require("./PaperclipIcon.js")
113
114
  module.exports.PenLineIcon = require("./PenLineIcon.js")
114
115
  module.exports.PenIcon = require("./PenIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const PageIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default PageIcon;
@@ -0,0 +1,24 @@
1
+ const React = require("react");
2
+ function PageIcon({
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: "M2.65901.65901C3.08097.237053 3.65326 0 4.25 0h7.5c.5967 0 1.169.237053 1.591.65901.4219.42196.659.99425.659 1.59099v11.5c0 .5967-.2371 1.169-.659 1.591-.422.4219-.9943.659-1.591.659h-7.5c-.59674 0-1.16903-.2371-1.59099-.659C2.23705 14.919 2 14.3467 2 13.75V2.25c0-.59674.23705-1.16903.65901-1.59099M5.74973 3c-.19891 0-.38968.07902-.53033.21967s-.21967.33142-.21967.53033.07902.38968.21967.53033.33142.21967.53033.21967h4.49997c.1989 0 .3897-.07902.5304-.21967.1406-.14065.2196-.33142.2196-.53033s-.079-.38968-.2196-.53033C10.6394 3.07902 10.4486 3 10.2497 3zM5.2194 6.21967C5.36005 6.07902 5.55082 6 5.74973 6h4.49997c.1989 0 .3897.07902.5304.21967.1406.14065.2196.33142.2196.53033s-.079.38968-.2196.53033c-.1407.14065-.3315.21967-.5304.21967H5.74973c-.19891 0-.38968-.07902-.53033-.21967s-.21967-.33142-.21967-.53033.07902-.38968.21967-.53033m0 3C5.36005 9.07902 5.55082 9 5.74973 9h2c.19891 0 .38968.07902.53033.21967.14066.14065.21967.33142.21967.53033s-.07901.3897-.21967.5303c-.14065.1407-.33142.2197-.53033.2197h-2c-.19891 0-.38968-.079-.53033-.2197-.14065-.1406-.21967-.33139-.21967-.5303s.07902-.38968.21967-.53033"
21
+ }));
22
+ }
23
+ const ForwardRef = React.forwardRef(PageIcon);
24
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const PageIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default PageIcon;
@@ -0,0 +1,24 @@
1
+ import * as React from "react";
2
+ function PageIcon({
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: "M2.65901.65901C3.08097.237053 3.65326 0 4.25 0h7.5c.5967 0 1.169.237053 1.591.65901.4219.42196.659.99425.659 1.59099v11.5c0 .5967-.2371 1.169-.659 1.591-.422.4219-.9943.659-1.591.659h-7.5c-.59674 0-1.16903-.2371-1.59099-.659C2.23705 14.919 2 14.3467 2 13.75V2.25c0-.59674.23705-1.16903.65901-1.59099M5.74973 3c-.19891 0-.38968.07902-.53033.21967s-.21967.33142-.21967.53033.07902.38968.21967.53033.33142.21967.53033.21967h4.49997c.1989 0 .3897-.07902.5304-.21967.1406-.14065.2196-.33142.2196-.53033s-.079-.38968-.2196-.53033C10.6394 3.07902 10.4486 3 10.2497 3zM5.2194 6.21967C5.36005 6.07902 5.55082 6 5.74973 6h4.49997c.1989 0 .3897.07902.5304.21967.1406.14065.2196.33142.2196.53033s-.079.38968-.2196.53033c-.1407.14065-.3315.21967-.5304.21967H5.74973c-.19891 0-.38968-.07902-.53033-.21967s-.21967-.33142-.21967-.53033.07902-.38968.21967-.53033m0 3C5.36005 9.07902 5.55082 9 5.74973 9h2c.19891 0 .38968.07902.53033.21967.14066.14065.21967.33142.21967.53033s-.07901.3897-.21967.5303c-.14065.1407-.33142.2197-.53033.2197h-2c-.19891 0-.38968-.079-.53033-.2197-.14065-.1406-.21967-.33139-.21967-.5303s.07902-.38968.21967-.53033"
21
+ }));
22
+ }
23
+ const ForwardRef = React.forwardRef(PageIcon);
24
+ export default ForwardRef;
@@ -109,6 +109,7 @@ export { default as MinimizeIcon } from './MinimizeIcon'
109
109
  export { default as MonitorIcon } from './MonitorIcon'
110
110
  export { default as MoreAltIcon } from './MoreAltIcon'
111
111
  export { default as MoreIcon } from './MoreIcon'
112
+ export { default as PageIcon } from './PageIcon'
112
113
  export { default as PaperclipIcon } from './PaperclipIcon'
113
114
  export { default as PenLineIcon } from './PenLineIcon'
114
115
  export { default as PenIcon } from './PenIcon'
@@ -109,6 +109,7 @@ export { default as MinimizeIcon } from './MinimizeIcon.js'
109
109
  export { default as MonitorIcon } from './MonitorIcon.js'
110
110
  export { default as MoreAltIcon } from './MoreAltIcon.js'
111
111
  export { default as MoreIcon } from './MoreIcon.js'
112
+ export { default as PageIcon } from './PageIcon.js'
112
113
  export { default as PaperclipIcon } from './PaperclipIcon.js'
113
114
  export { default as PenLineIcon } from './PenLineIcon.js'
114
115
  export { default as PenIcon } from './PenIcon.js'
@@ -109,6 +109,7 @@ export { default as MinimizeIcon } from './MinimizeIcon'
109
109
  export { default as MonitorIcon } from './MonitorIcon'
110
110
  export { default as MoreAltIcon } from './MoreAltIcon'
111
111
  export { default as MoreIcon } from './MoreIcon'
112
+ export { default as PageIcon } from './PageIcon'
112
113
  export { default as PaperclipIcon } from './PaperclipIcon'
113
114
  export { default as PenLineIcon } from './PenLineIcon'
114
115
  export { default as PenIcon } from './PenIcon'
package/16/solid/index.js CHANGED
@@ -109,6 +109,7 @@ module.exports.MinimizeIcon = require("./MinimizeIcon.js")
109
109
  module.exports.MonitorIcon = require("./MonitorIcon.js")
110
110
  module.exports.MoreAltIcon = require("./MoreAltIcon.js")
111
111
  module.exports.MoreIcon = require("./MoreIcon.js")
112
+ module.exports.PageIcon = require("./PageIcon.js")
112
113
  module.exports.PaperclipIcon = require("./PaperclipIcon.js")
113
114
  module.exports.PenLineIcon = require("./PenLineIcon.js")
114
115
  module.exports.PenIcon = require("./PenIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const PageIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default PageIcon;
@@ -0,0 +1,27 @@
1
+ const React = require("react");
2
+ function PageIcon({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }, svgRef) {
7
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ width: 24,
10
+ height: 24,
11
+ fill: "none",
12
+ viewBox: "0 0 24 24",
13
+ ref: svgRef,
14
+ "aria-labelledby": titleId
15
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
16
+ id: titleId
17
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
18
+ fill: "currentColor",
19
+ fillRule: "evenodd",
20
+ d: "M4.80546 1.80546C5.32118 1.28973 6.02065 1 6.75 1h10.5c.3611 0 .7187.07113 1.0524.20933.3336.1382.6368.34077.8921.59613.2554.25536.458.55852.5962.89216.1382.33365.2093.69124.2093 1.05238v16.5c0 .3611-.0711.7187-.2093 1.0524-.1382.3336-.3408.6368-.5962.8921-.2553.2554-.5585.458-.8921.5962-.3337.1382-.6913.2093-1.0524.2093H6.75c-.72935 0-1.42882-.2897-1.94454-.8055C4.28973 21.6788 4 20.9793 4 20.25V3.75c0-.72935.28973-1.42882.80546-1.94454M6.75 2.5c-.69 0-1.25.56-1.25 1.25v16.5c0 .69.56 1.25 1.25 1.25h10.5c.69 0 1.25-.56 1.25-1.25V3.75c0-.69-.56-1.25-1.25-1.25z"
21
+ }), /*#__PURE__*/React.createElement("path", {
22
+ fill: "currentColor",
23
+ d: "M7.21967 5.21967C7.36032 5.07902 7.55109 5 7.75 5h8.5c.1989 0 .3897.07902.5303.21967.1407.14065.2197.33142.2197.53033s-.079.38968-.2197.53033c-.1406.14065-.3314.21967-.5303.21967h-8.5c-.19891 0-.38968-.07902-.53033-.21967S7 5.94891 7 5.75s.07902-.38968.21967-.53033m0 3C7.36032 8.07902 7.55109 8 7.75 8h8.5c.1989 0 .3897.07902.5303.21967.1407.14065.2197.33142.2197.53033s-.079.38968-.2197.53033c-.1406.14065-.3314.21967-.5303.21967h-8.5c-.19891 0-.38968-.07902-.53033-.21967S7 8.94891 7 8.75s.07902-.38968.21967-.53033m0 3.00003C7.36032 11.079 7.55109 11 7.75 11h3.5c.1989 0 .3897.079.5303.2197.1407.1406.2197.3314.2197.5303s-.079.3897-.2197.5303c-.1406.1407-.3314.2197-.5303.2197h-3.5c-.19891 0-.38968-.079-.53033-.2197C7.07902 12.1397 7 11.9489 7 11.75s.07902-.3897.21967-.5303"
24
+ }));
25
+ }
26
+ const ForwardRef = React.forwardRef(PageIcon);
27
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const PageIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default PageIcon;
@@ -0,0 +1,27 @@
1
+ import * as React from "react";
2
+ function PageIcon({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }, svgRef) {
7
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ width: 24,
10
+ height: 24,
11
+ fill: "none",
12
+ viewBox: "0 0 24 24",
13
+ ref: svgRef,
14
+ "aria-labelledby": titleId
15
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
16
+ id: titleId
17
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
18
+ fill: "currentColor",
19
+ fillRule: "evenodd",
20
+ d: "M4.80546 1.80546C5.32118 1.28973 6.02065 1 6.75 1h10.5c.3611 0 .7187.07113 1.0524.20933.3336.1382.6368.34077.8921.59613.2554.25536.458.55852.5962.89216.1382.33365.2093.69124.2093 1.05238v16.5c0 .3611-.0711.7187-.2093 1.0524-.1382.3336-.3408.6368-.5962.8921-.2553.2554-.5585.458-.8921.5962-.3337.1382-.6913.2093-1.0524.2093H6.75c-.72935 0-1.42882-.2897-1.94454-.8055C4.28973 21.6788 4 20.9793 4 20.25V3.75c0-.72935.28973-1.42882.80546-1.94454M6.75 2.5c-.69 0-1.25.56-1.25 1.25v16.5c0 .69.56 1.25 1.25 1.25h10.5c.69 0 1.25-.56 1.25-1.25V3.75c0-.69-.56-1.25-1.25-1.25z"
21
+ }), /*#__PURE__*/React.createElement("path", {
22
+ fill: "currentColor",
23
+ d: "M7.21967 5.21967C7.36032 5.07902 7.55109 5 7.75 5h8.5c.1989 0 .3897.07902.5303.21967.1407.14065.2197.33142.2197.53033s-.079.38968-.2197.53033c-.1406.14065-.3314.21967-.5303.21967h-8.5c-.19891 0-.38968-.07902-.53033-.21967S7 5.94891 7 5.75s.07902-.38968.21967-.53033m0 3C7.36032 8.07902 7.55109 8 7.75 8h8.5c.1989 0 .3897.07902.5303.21967.1407.14065.2197.33142.2197.53033s-.079.38968-.2197.53033c-.1406.14065-.3314.21967-.5303.21967h-8.5c-.19891 0-.38968-.07902-.53033-.21967S7 8.94891 7 8.75s.07902-.38968.21967-.53033m0 3.00003C7.36032 11.079 7.55109 11 7.75 11h3.5c.1989 0 .3897.079.5303.2197.1407.1406.2197.3314.2197.5303s-.079.3897-.2197.5303c-.1406.1407-.3314.2197-.5303.2197h-3.5c-.19891 0-.38968-.079-.53033-.2197C7.07902 12.1397 7 11.9489 7 11.75s.07902-.3897.21967-.5303"
24
+ }));
25
+ }
26
+ const ForwardRef = React.forwardRef(PageIcon);
27
+ export default ForwardRef;
@@ -109,6 +109,7 @@ export { default as MinimizeIcon } from './MinimizeIcon'
109
109
  export { default as MonitorIcon } from './MonitorIcon'
110
110
  export { default as MoreAltIcon } from './MoreAltIcon'
111
111
  export { default as MoreIcon } from './MoreIcon'
112
+ export { default as PageIcon } from './PageIcon'
112
113
  export { default as PaperclipIcon } from './PaperclipIcon'
113
114
  export { default as PenLineIcon } from './PenLineIcon'
114
115
  export { default as PenIcon } from './PenIcon'
@@ -109,6 +109,7 @@ export { default as MinimizeIcon } from './MinimizeIcon.js'
109
109
  export { default as MonitorIcon } from './MonitorIcon.js'
110
110
  export { default as MoreAltIcon } from './MoreAltIcon.js'
111
111
  export { default as MoreIcon } from './MoreIcon.js'
112
+ export { default as PageIcon } from './PageIcon.js'
112
113
  export { default as PaperclipIcon } from './PaperclipIcon.js'
113
114
  export { default as PenLineIcon } from './PenLineIcon.js'
114
115
  export { default as PenIcon } from './PenIcon.js'
@@ -109,6 +109,7 @@ export { default as MinimizeIcon } from './MinimizeIcon'
109
109
  export { default as MonitorIcon } from './MonitorIcon'
110
110
  export { default as MoreAltIcon } from './MoreAltIcon'
111
111
  export { default as MoreIcon } from './MoreIcon'
112
+ export { default as PageIcon } from './PageIcon'
112
113
  export { default as PaperclipIcon } from './PaperclipIcon'
113
114
  export { default as PenLineIcon } from './PenLineIcon'
114
115
  export { default as PenIcon } from './PenIcon'
@@ -109,6 +109,7 @@ module.exports.MinimizeIcon = require("./MinimizeIcon.js")
109
109
  module.exports.MonitorIcon = require("./MonitorIcon.js")
110
110
  module.exports.MoreAltIcon = require("./MoreAltIcon.js")
111
111
  module.exports.MoreIcon = require("./MoreIcon.js")
112
+ module.exports.PageIcon = require("./PageIcon.js")
112
113
  module.exports.PaperclipIcon = require("./PaperclipIcon.js")
113
114
  module.exports.PenLineIcon = require("./PenLineIcon.js")
114
115
  module.exports.PenIcon = require("./PenIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const PageIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default PageIcon;
@@ -0,0 +1,24 @@
1
+ const React = require("react");
2
+ function PageIcon({
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: "M6.75 1c-.72935 0-1.42882.28973-1.94454.80546C4.28973 2.32118 4 3.02065 4 3.75v16.5c0 .7293.28973 1.4288.80546 1.9445C5.32118 22.7103 6.02065 23 6.75 23h10.5c.3611 0 .7187-.0711 1.0524-.2093.3336-.1382.6368-.3408.8921-.5962.2554-.2553.458-.5585.5962-.8921.1382-.3337.2093-.6913.2093-1.0524V3.75c0-.36114-.0711-.71873-.2093-1.05238-.1382-.33364-.3408-.6368-.5962-.89216-.2553-.25536-.5585-.45793-.8921-.59613C17.9687 1.07113 17.6111 1 17.25 1zm1 4c-.19891 0-.38968.07902-.53033.21967S7 5.55109 7 5.75s.07902.38968.21967.53033S7.55109 6.5 7.75 6.5h8.5c.1989 0 .3897-.07902.5303-.21967C16.921 6.13968 17 5.94891 17 5.75s-.079-.38968-.2197-.53033C16.6397 5.07902 16.4489 5 16.25 5zm-.53033 3.21967C7.36032 8.07902 7.55109 8 7.75 8h8.5c.1989 0 .3897.07902.5303.21967.1407.14065.2197.33142.2197.53033s-.079.38968-.2197.53033c-.1406.14065-.3314.21967-.5303.21967h-8.5c-.19891 0-.38968-.07902-.53033-.21967S7 8.94891 7 8.75s.07902-.38968.21967-.53033M7.75 11c-.19891 0-.38968.079-.53033.2197C7.07902 11.3603 7 11.5511 7 11.75s.07902.3897.21967.5303c.14065.1407.33142.2197.53033.2197h3.5c.1989 0 .3897-.079.5303-.2197.1407-.1406.2197-.3314.2197-.5303s-.079-.3897-.2197-.5303C11.6397 11.079 11.4489 11 11.25 11z"
21
+ }));
22
+ }
23
+ const ForwardRef = React.forwardRef(PageIcon);
24
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const PageIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default PageIcon;
@@ -0,0 +1,24 @@
1
+ import * as React from "react";
2
+ function PageIcon({
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: "M6.75 1c-.72935 0-1.42882.28973-1.94454.80546C4.28973 2.32118 4 3.02065 4 3.75v16.5c0 .7293.28973 1.4288.80546 1.9445C5.32118 22.7103 6.02065 23 6.75 23h10.5c.3611 0 .7187-.0711 1.0524-.2093.3336-.1382.6368-.3408.8921-.5962.2554-.2553.458-.5585.5962-.8921.1382-.3337.2093-.6913.2093-1.0524V3.75c0-.36114-.0711-.71873-.2093-1.05238-.1382-.33364-.3408-.6368-.5962-.89216-.2553-.25536-.5585-.45793-.8921-.59613C17.9687 1.07113 17.6111 1 17.25 1zm1 4c-.19891 0-.38968.07902-.53033.21967S7 5.55109 7 5.75s.07902.38968.21967.53033S7.55109 6.5 7.75 6.5h8.5c.1989 0 .3897-.07902.5303-.21967C16.921 6.13968 17 5.94891 17 5.75s-.079-.38968-.2197-.53033C16.6397 5.07902 16.4489 5 16.25 5zm-.53033 3.21967C7.36032 8.07902 7.55109 8 7.75 8h8.5c.1989 0 .3897.07902.5303.21967.1407.14065.2197.33142.2197.53033s-.079.38968-.2197.53033c-.1406.14065-.3314.21967-.5303.21967h-8.5c-.19891 0-.38968-.07902-.53033-.21967S7 8.94891 7 8.75s.07902-.38968.21967-.53033M7.75 11c-.19891 0-.38968.079-.53033.2197C7.07902 11.3603 7 11.5511 7 11.75s.07902.3897.21967.5303c.14065.1407.33142.2197.53033.2197h3.5c.1989 0 .3897-.079.5303-.2197.1407-.1406.2197-.3314.2197-.5303s-.079-.3897-.2197-.5303C11.6397 11.079 11.4489 11 11.25 11z"
21
+ }));
22
+ }
23
+ const ForwardRef = React.forwardRef(PageIcon);
24
+ export default ForwardRef;
@@ -109,6 +109,7 @@ export { default as MinimizeIcon } from './MinimizeIcon'
109
109
  export { default as MonitorIcon } from './MonitorIcon'
110
110
  export { default as MoreAltIcon } from './MoreAltIcon'
111
111
  export { default as MoreIcon } from './MoreIcon'
112
+ export { default as PageIcon } from './PageIcon'
112
113
  export { default as PaperclipIcon } from './PaperclipIcon'
113
114
  export { default as PenLineIcon } from './PenLineIcon'
114
115
  export { default as PenIcon } from './PenIcon'
@@ -109,6 +109,7 @@ export { default as MinimizeIcon } from './MinimizeIcon.js'
109
109
  export { default as MonitorIcon } from './MonitorIcon.js'
110
110
  export { default as MoreAltIcon } from './MoreAltIcon.js'
111
111
  export { default as MoreIcon } from './MoreIcon.js'
112
+ export { default as PageIcon } from './PageIcon.js'
112
113
  export { default as PaperclipIcon } from './PaperclipIcon.js'
113
114
  export { default as PenLineIcon } from './PenLineIcon.js'
114
115
  export { default as PenIcon } from './PenIcon.js'
@@ -109,6 +109,7 @@ export { default as MinimizeIcon } from './MinimizeIcon'
109
109
  export { default as MonitorIcon } from './MonitorIcon'
110
110
  export { default as MoreAltIcon } from './MoreAltIcon'
111
111
  export { default as MoreIcon } from './MoreIcon'
112
+ export { default as PageIcon } from './PageIcon'
112
113
  export { default as PaperclipIcon } from './PaperclipIcon'
113
114
  export { default as PenLineIcon } from './PenLineIcon'
114
115
  export { default as PenIcon } from './PenIcon'
package/24/solid/index.js CHANGED
@@ -109,6 +109,7 @@ module.exports.MinimizeIcon = require("./MinimizeIcon.js")
109
109
  module.exports.MonitorIcon = require("./MonitorIcon.js")
110
110
  module.exports.MoreAltIcon = require("./MoreAltIcon.js")
111
111
  module.exports.MoreIcon = require("./MoreIcon.js")
112
+ module.exports.PageIcon = require("./PageIcon.js")
112
113
  module.exports.PaperclipIcon = require("./PaperclipIcon.js")
113
114
  module.exports.PenLineIcon = require("./PenLineIcon.js")
114
115
  module.exports.PenIcon = require("./PenIcon.js")
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "metal-icons",
3
3
  "license": "MIT",
4
- "version": "0.2.3",
4
+ "version": "0.2.4",
5
5
  "description": "A flexible React icon library.",
6
6
  "keywords": [
7
7
  "design",
package/.gitignore DELETED
@@ -1,5 +0,0 @@
1
- *
2
- !*.js
3
- !.gitignore
4
- !package.json
5
- !README.md