metal-icons 0.2.15 → 0.3.0

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 GridPlusIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default GridPlusIcon;
@@ -0,0 +1,25 @@
1
+ const React = require("react");
2
+ function GridPlusIcon({
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 15C1.56 15 1 14.44 1 13.75v-3.5C1 9.56 1.56 9 2.25 9h3.5C6.44 9 7 9.56 7 10.25v3.5C7 14.44 6.44 15 5.75 15zm.25-4.5v3h3v-3zm7.75 4.5C9.56 15 9 14.44 9 13.75v-3.5C9 9.56 9.56 9 10.25 9h3.5c.69 0 1.25.56 1.25 1.25v3.5c0 .69-.56 1.25-1.25 1.25zm.25-4.5v3h3v-3zM2.25 7C1.56 7 1 6.44 1 5.75v-3.5C1 1.56 1.56 1 2.25 1h3.5C6.44 1 7 1.56 7 2.25v3.5C7 6.44 6.44 7 5.75 7zm.25-4.5v3h3v-3z"
20
+ }), /*#__PURE__*/React.createElement("path", {
21
+ d: "M12.75 6.25a.75.75 0 1 1-1.5 0v-1.5h-1.5a.75.75 0 0 1 0-1.5h1.5v-1.5a.75.75 0 1 1 1.5 0v1.5h1.5a.75.75 0 1 1 0 1.5h-1.5z"
22
+ }));
23
+ }
24
+ const ForwardRef = React.forwardRef(GridPlusIcon);
25
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const GridPlusIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default GridPlusIcon;
@@ -0,0 +1,25 @@
1
+ import * as React from "react";
2
+ function GridPlusIcon({
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 15C1.56 15 1 14.44 1 13.75v-3.5C1 9.56 1.56 9 2.25 9h3.5C6.44 9 7 9.56 7 10.25v3.5C7 14.44 6.44 15 5.75 15zm.25-4.5v3h3v-3zm7.75 4.5C9.56 15 9 14.44 9 13.75v-3.5C9 9.56 9.56 9 10.25 9h3.5c.69 0 1.25.56 1.25 1.25v3.5c0 .69-.56 1.25-1.25 1.25zm.25-4.5v3h3v-3zM2.25 7C1.56 7 1 6.44 1 5.75v-3.5C1 1.56 1.56 1 2.25 1h3.5C6.44 1 7 1.56 7 2.25v3.5C7 6.44 6.44 7 5.75 7zm.25-4.5v3h3v-3z"
20
+ }), /*#__PURE__*/React.createElement("path", {
21
+ d: "M12.75 6.25a.75.75 0 1 1-1.5 0v-1.5h-1.5a.75.75 0 0 1 0-1.5h1.5v-1.5a.75.75 0 1 1 1.5 0v1.5h1.5a.75.75 0 1 1 0 1.5h-1.5z"
22
+ }));
23
+ }
24
+ const ForwardRef = React.forwardRef(GridPlusIcon);
25
+ export default ForwardRef;
@@ -93,6 +93,7 @@ export { default as FolderMinusIcon } from './FolderMinusIcon'
93
93
  export { default as FolderPlusIcon } from './FolderPlusIcon'
94
94
  export { default as FolderIcon } from './FolderIcon'
95
95
  export { default as GlobeIcon } from './GlobeIcon'
96
+ export { default as GridPlusIcon } from './GridPlusIcon'
96
97
  export { default as GridIcon } from './GridIcon'
97
98
  export { default as HashIcon } from './HashIcon'
98
99
  export { default as HeadphonesIcon } from './HeadphonesIcon'
@@ -93,6 +93,7 @@ export { default as FolderMinusIcon } from './FolderMinusIcon.js'
93
93
  export { default as FolderPlusIcon } from './FolderPlusIcon.js'
94
94
  export { default as FolderIcon } from './FolderIcon.js'
95
95
  export { default as GlobeIcon } from './GlobeIcon.js'
96
+ export { default as GridPlusIcon } from './GridPlusIcon.js'
96
97
  export { default as GridIcon } from './GridIcon.js'
97
98
  export { default as HashIcon } from './HashIcon.js'
98
99
  export { default as HeadphonesIcon } from './HeadphonesIcon.js'
@@ -93,6 +93,7 @@ export { default as FolderMinusIcon } from './FolderMinusIcon'
93
93
  export { default as FolderPlusIcon } from './FolderPlusIcon'
94
94
  export { default as FolderIcon } from './FolderIcon'
95
95
  export { default as GlobeIcon } from './GlobeIcon'
96
+ export { default as GridPlusIcon } from './GridPlusIcon'
96
97
  export { default as GridIcon } from './GridIcon'
97
98
  export { default as HashIcon } from './HashIcon'
98
99
  export { default as HeadphonesIcon } from './HeadphonesIcon'
@@ -93,6 +93,7 @@ module.exports.FolderMinusIcon = require("./FolderMinusIcon.js")
93
93
  module.exports.FolderPlusIcon = require("./FolderPlusIcon.js")
94
94
  module.exports.FolderIcon = require("./FolderIcon.js")
95
95
  module.exports.GlobeIcon = require("./GlobeIcon.js")
96
+ module.exports.GridPlusIcon = require("./GridPlusIcon.js")
96
97
  module.exports.GridIcon = require("./GridIcon.js")
97
98
  module.exports.HashIcon = require("./HashIcon.js")
98
99
  module.exports.HeadphonesIcon = require("./HeadphonesIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const GridPlusIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default GridPlusIcon;
@@ -0,0 +1,25 @@
1
+ const React = require("react");
2
+ function GridPlusIcon({
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 15C1.56 15 1 14.44 1 13.75v-3.5C1 9.56 1.56 9 2.25 9h3.5C6.44 9 7 9.56 7 10.25v3.5C7 14.44 6.44 15 5.75 15zm8 0C9.56 15 9 14.44 9 13.75v-3.5C9 9.56 9.56 9 10.25 9h3.5c.69 0 1.25.56 1.25 1.25v3.5c0 .69-.56 1.25-1.25 1.25zm-8-8C1.56 7 1 6.44 1 5.75v-3.5C1 1.56 1.56 1 2.25 1h3.5C6.44 1 7 1.56 7 2.25v3.5C7 6.44 6.44 7 5.75 7z"
20
+ }), /*#__PURE__*/React.createElement("path", {
21
+ d: "M12.75 6.25a.75.75 0 1 1-1.5 0v-1.5h-1.5a.75.75 0 0 1 0-1.5h1.5v-1.5a.75.75 0 1 1 1.5 0v1.5h1.5a.75.75 0 1 1 0 1.5h-1.5z"
22
+ }));
23
+ }
24
+ const ForwardRef = React.forwardRef(GridPlusIcon);
25
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const GridPlusIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default GridPlusIcon;
@@ -0,0 +1,25 @@
1
+ import * as React from "react";
2
+ function GridPlusIcon({
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 15C1.56 15 1 14.44 1 13.75v-3.5C1 9.56 1.56 9 2.25 9h3.5C6.44 9 7 9.56 7 10.25v3.5C7 14.44 6.44 15 5.75 15zm8 0C9.56 15 9 14.44 9 13.75v-3.5C9 9.56 9.56 9 10.25 9h3.5c.69 0 1.25.56 1.25 1.25v3.5c0 .69-.56 1.25-1.25 1.25zm-8-8C1.56 7 1 6.44 1 5.75v-3.5C1 1.56 1.56 1 2.25 1h3.5C6.44 1 7 1.56 7 2.25v3.5C7 6.44 6.44 7 5.75 7z"
20
+ }), /*#__PURE__*/React.createElement("path", {
21
+ d: "M12.75 6.25a.75.75 0 1 1-1.5 0v-1.5h-1.5a.75.75 0 0 1 0-1.5h1.5v-1.5a.75.75 0 1 1 1.5 0v1.5h1.5a.75.75 0 1 1 0 1.5h-1.5z"
22
+ }));
23
+ }
24
+ const ForwardRef = React.forwardRef(GridPlusIcon);
25
+ export default ForwardRef;
@@ -93,6 +93,7 @@ export { default as FolderMinusIcon } from './FolderMinusIcon'
93
93
  export { default as FolderPlusIcon } from './FolderPlusIcon'
94
94
  export { default as FolderIcon } from './FolderIcon'
95
95
  export { default as GlobeIcon } from './GlobeIcon'
96
+ export { default as GridPlusIcon } from './GridPlusIcon'
96
97
  export { default as GridIcon } from './GridIcon'
97
98
  export { default as HashIcon } from './HashIcon'
98
99
  export { default as HeadphonesIcon } from './HeadphonesIcon'
@@ -93,6 +93,7 @@ export { default as FolderMinusIcon } from './FolderMinusIcon.js'
93
93
  export { default as FolderPlusIcon } from './FolderPlusIcon.js'
94
94
  export { default as FolderIcon } from './FolderIcon.js'
95
95
  export { default as GlobeIcon } from './GlobeIcon.js'
96
+ export { default as GridPlusIcon } from './GridPlusIcon.js'
96
97
  export { default as GridIcon } from './GridIcon.js'
97
98
  export { default as HashIcon } from './HashIcon.js'
98
99
  export { default as HeadphonesIcon } from './HeadphonesIcon.js'
@@ -93,6 +93,7 @@ export { default as FolderMinusIcon } from './FolderMinusIcon'
93
93
  export { default as FolderPlusIcon } from './FolderPlusIcon'
94
94
  export { default as FolderIcon } from './FolderIcon'
95
95
  export { default as GlobeIcon } from './GlobeIcon'
96
+ export { default as GridPlusIcon } from './GridPlusIcon'
96
97
  export { default as GridIcon } from './GridIcon'
97
98
  export { default as HashIcon } from './HashIcon'
98
99
  export { default as HeadphonesIcon } from './HeadphonesIcon'
package/16/solid/index.js CHANGED
@@ -93,6 +93,7 @@ module.exports.FolderMinusIcon = require("./FolderMinusIcon.js")
93
93
  module.exports.FolderPlusIcon = require("./FolderPlusIcon.js")
94
94
  module.exports.FolderIcon = require("./FolderIcon.js")
95
95
  module.exports.GlobeIcon = require("./GlobeIcon.js")
96
+ module.exports.GridPlusIcon = require("./GridPlusIcon.js")
96
97
  module.exports.GridIcon = require("./GridIcon.js")
97
98
  module.exports.HashIcon = require("./HashIcon.js")
98
99
  module.exports.HeadphonesIcon = require("./HeadphonesIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const GridPlusIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default GridPlusIcon;
@@ -0,0 +1,25 @@
1
+ const React = require("react");
2
+ function GridPlusIcon({
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: "M3.75 22A1.75 1.75 0 0 1 2 20.25v-5.5c0-.966.784-1.75 1.75-1.75h5.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 9.25 22zm-.25-1.75c0 .138.112.25.25.25h5.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25h-5.5a.25.25 0 0 0-.25.25zM14.75 22A1.75 1.75 0 0 1 13 20.25v-5.5c0-.966.784-1.75 1.75-1.75h5.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 20.25 22zm-.25-1.75c0 .138.112.25.25.25h5.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25h-5.5a.25.25 0 0 0-.25.25zM3.75 11A1.75 1.75 0 0 1 2 9.25v-5.5C2 2.784 2.784 2 3.75 2h5.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 9.25 11zM3.5 9.25c0 .138.112.25.25.25h5.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25h-5.5a.25.25 0 0 0-.25.25z"
20
+ }), /*#__PURE__*/React.createElement("path", {
21
+ d: "M18.25 10.25a.75.75 0 1 1-1.5 0v-3h-3a.75.75 0 1 1 0-1.5h3v-3a.75.75 0 1 1 1.5 0v3h3a.75.75 0 1 1 0 1.5h-3z"
22
+ }));
23
+ }
24
+ const ForwardRef = React.forwardRef(GridPlusIcon);
25
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const GridPlusIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default GridPlusIcon;
@@ -0,0 +1,25 @@
1
+ import * as React from "react";
2
+ function GridPlusIcon({
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: "M3.75 22A1.75 1.75 0 0 1 2 20.25v-5.5c0-.966.784-1.75 1.75-1.75h5.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 9.25 22zm-.25-1.75c0 .138.112.25.25.25h5.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25h-5.5a.25.25 0 0 0-.25.25zM14.75 22A1.75 1.75 0 0 1 13 20.25v-5.5c0-.966.784-1.75 1.75-1.75h5.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 20.25 22zm-.25-1.75c0 .138.112.25.25.25h5.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25h-5.5a.25.25 0 0 0-.25.25zM3.75 11A1.75 1.75 0 0 1 2 9.25v-5.5C2 2.784 2.784 2 3.75 2h5.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 9.25 11zM3.5 9.25c0 .138.112.25.25.25h5.5a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25h-5.5a.25.25 0 0 0-.25.25z"
20
+ }), /*#__PURE__*/React.createElement("path", {
21
+ d: "M18.25 10.25a.75.75 0 1 1-1.5 0v-3h-3a.75.75 0 1 1 0-1.5h3v-3a.75.75 0 1 1 1.5 0v3h3a.75.75 0 1 1 0 1.5h-3z"
22
+ }));
23
+ }
24
+ const ForwardRef = React.forwardRef(GridPlusIcon);
25
+ export default ForwardRef;
@@ -93,6 +93,7 @@ export { default as FolderMinusIcon } from './FolderMinusIcon'
93
93
  export { default as FolderPlusIcon } from './FolderPlusIcon'
94
94
  export { default as FolderIcon } from './FolderIcon'
95
95
  export { default as GlobeIcon } from './GlobeIcon'
96
+ export { default as GridPlusIcon } from './GridPlusIcon'
96
97
  export { default as GridIcon } from './GridIcon'
97
98
  export { default as HashIcon } from './HashIcon'
98
99
  export { default as HeadphonesIcon } from './HeadphonesIcon'
@@ -93,6 +93,7 @@ export { default as FolderMinusIcon } from './FolderMinusIcon.js'
93
93
  export { default as FolderPlusIcon } from './FolderPlusIcon.js'
94
94
  export { default as FolderIcon } from './FolderIcon.js'
95
95
  export { default as GlobeIcon } from './GlobeIcon.js'
96
+ export { default as GridPlusIcon } from './GridPlusIcon.js'
96
97
  export { default as GridIcon } from './GridIcon.js'
97
98
  export { default as HashIcon } from './HashIcon.js'
98
99
  export { default as HeadphonesIcon } from './HeadphonesIcon.js'
@@ -93,6 +93,7 @@ export { default as FolderMinusIcon } from './FolderMinusIcon'
93
93
  export { default as FolderPlusIcon } from './FolderPlusIcon'
94
94
  export { default as FolderIcon } from './FolderIcon'
95
95
  export { default as GlobeIcon } from './GlobeIcon'
96
+ export { default as GridPlusIcon } from './GridPlusIcon'
96
97
  export { default as GridIcon } from './GridIcon'
97
98
  export { default as HashIcon } from './HashIcon'
98
99
  export { default as HeadphonesIcon } from './HeadphonesIcon'
@@ -93,6 +93,7 @@ module.exports.FolderMinusIcon = require("./FolderMinusIcon.js")
93
93
  module.exports.FolderPlusIcon = require("./FolderPlusIcon.js")
94
94
  module.exports.FolderIcon = require("./FolderIcon.js")
95
95
  module.exports.GlobeIcon = require("./GlobeIcon.js")
96
+ module.exports.GridPlusIcon = require("./GridPlusIcon.js")
96
97
  module.exports.GridIcon = require("./GridIcon.js")
97
98
  module.exports.HashIcon = require("./HashIcon.js")
98
99
  module.exports.HeadphonesIcon = require("./HeadphonesIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const GridPlusIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default GridPlusIcon;
@@ -0,0 +1,25 @@
1
+ const React = require("react");
2
+ function GridPlusIcon({
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: "M3.75 22A1.75 1.75 0 0 1 2 20.25v-5.5c0-.966.784-1.75 1.75-1.75h5.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 9.25 22zm11 0A1.75 1.75 0 0 1 13 20.25v-5.5c0-.966.784-1.75 1.75-1.75h5.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 20.25 22zm-11-11A1.75 1.75 0 0 1 2 9.25v-5.5C2 2.784 2.784 2 3.75 2h5.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 9.25 11z"
20
+ }), /*#__PURE__*/React.createElement("path", {
21
+ d: "M18.25 10.25a.75.75 0 1 1-1.5 0v-3h-3a.75.75 0 1 1 0-1.5h3v-3a.75.75 0 1 1 1.5 0v3h3a.75.75 0 1 1 0 1.5h-3z"
22
+ }));
23
+ }
24
+ const ForwardRef = React.forwardRef(GridPlusIcon);
25
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const GridPlusIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default GridPlusIcon;
@@ -0,0 +1,25 @@
1
+ import * as React from "react";
2
+ function GridPlusIcon({
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: "M3.75 22A1.75 1.75 0 0 1 2 20.25v-5.5c0-.966.784-1.75 1.75-1.75h5.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 9.25 22zm11 0A1.75 1.75 0 0 1 13 20.25v-5.5c0-.966.784-1.75 1.75-1.75h5.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 20.25 22zm-11-11A1.75 1.75 0 0 1 2 9.25v-5.5C2 2.784 2.784 2 3.75 2h5.5c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 9.25 11z"
20
+ }), /*#__PURE__*/React.createElement("path", {
21
+ d: "M18.25 10.25a.75.75 0 1 1-1.5 0v-3h-3a.75.75 0 1 1 0-1.5h3v-3a.75.75 0 1 1 1.5 0v3h3a.75.75 0 1 1 0 1.5h-3z"
22
+ }));
23
+ }
24
+ const ForwardRef = React.forwardRef(GridPlusIcon);
25
+ export default ForwardRef;
@@ -93,6 +93,7 @@ export { default as FolderMinusIcon } from './FolderMinusIcon'
93
93
  export { default as FolderPlusIcon } from './FolderPlusIcon'
94
94
  export { default as FolderIcon } from './FolderIcon'
95
95
  export { default as GlobeIcon } from './GlobeIcon'
96
+ export { default as GridPlusIcon } from './GridPlusIcon'
96
97
  export { default as GridIcon } from './GridIcon'
97
98
  export { default as HashIcon } from './HashIcon'
98
99
  export { default as HeadphonesIcon } from './HeadphonesIcon'
@@ -93,6 +93,7 @@ export { default as FolderMinusIcon } from './FolderMinusIcon.js'
93
93
  export { default as FolderPlusIcon } from './FolderPlusIcon.js'
94
94
  export { default as FolderIcon } from './FolderIcon.js'
95
95
  export { default as GlobeIcon } from './GlobeIcon.js'
96
+ export { default as GridPlusIcon } from './GridPlusIcon.js'
96
97
  export { default as GridIcon } from './GridIcon.js'
97
98
  export { default as HashIcon } from './HashIcon.js'
98
99
  export { default as HeadphonesIcon } from './HeadphonesIcon.js'
@@ -93,6 +93,7 @@ export { default as FolderMinusIcon } from './FolderMinusIcon'
93
93
  export { default as FolderPlusIcon } from './FolderPlusIcon'
94
94
  export { default as FolderIcon } from './FolderIcon'
95
95
  export { default as GlobeIcon } from './GlobeIcon'
96
+ export { default as GridPlusIcon } from './GridPlusIcon'
96
97
  export { default as GridIcon } from './GridIcon'
97
98
  export { default as HashIcon } from './HashIcon'
98
99
  export { default as HeadphonesIcon } from './HeadphonesIcon'
package/24/solid/index.js CHANGED
@@ -93,6 +93,7 @@ module.exports.FolderMinusIcon = require("./FolderMinusIcon.js")
93
93
  module.exports.FolderPlusIcon = require("./FolderPlusIcon.js")
94
94
  module.exports.FolderIcon = require("./FolderIcon.js")
95
95
  module.exports.GlobeIcon = require("./GlobeIcon.js")
96
+ module.exports.GridPlusIcon = require("./GridPlusIcon.js")
96
97
  module.exports.GridIcon = require("./GridIcon.js")
97
98
  module.exports.HashIcon = require("./HashIcon.js")
98
99
  module.exports.HeadphonesIcon = require("./HeadphonesIcon.js")
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "metal-icons",
3
3
  "license": "MIT",
4
- "version": "0.2.15",
4
+ "version": "0.3.0",
5
5
  "description": "A flexible React icon library.",
6
6
  "keywords": [
7
7
  "design",