metal-icons 0.7.0 → 0.8.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 HouseIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default HouseIcon;
@@ -0,0 +1,24 @@
1
+ const React = require("react");
2
+ function HouseIcon({
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: "M8 1.02c.392 0 .772.132 1.08.374l5.25 4.119A1.75 1.75 0 0 1 15 6.89v7.36a.75.75 0 0 1-.747.749L10.25 15a.75.75 0 0 1-.75-.75V10.5h-3v3.75a.75.75 0 0 1-.747.749L1.75 15a.75.75 0 0 1-.75-.75V6.89a1.75 1.75 0 0 1 .67-1.376l5.25-4.12A1.75 1.75 0 0 1 8 1.02m0 1.5c-.056 0-.11.02-.154.054l-5.25 4.12a.251.251 0 0 0-.096.196v6.61H5v-3.25C5 9.56 5.56 9 6.25 9h3.5c.69 0 1.25.56 1.25 1.25v3.25h2.5V6.89a.25.25 0 0 0-.096-.196l-5.25-4.12A.251.251 0 0 0 8 2.521Z"
21
+ }));
22
+ }
23
+ const ForwardRef = React.forwardRef(HouseIcon);
24
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const HouseIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default HouseIcon;
@@ -0,0 +1,24 @@
1
+ import * as React from "react";
2
+ function HouseIcon({
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: "M8 1.02c.392 0 .772.132 1.08.374l5.25 4.119A1.75 1.75 0 0 1 15 6.89v7.36a.75.75 0 0 1-.747.749L10.25 15a.75.75 0 0 1-.75-.75V10.5h-3v3.75a.75.75 0 0 1-.747.749L1.75 15a.75.75 0 0 1-.75-.75V6.89a1.75 1.75 0 0 1 .67-1.376l5.25-4.12A1.75 1.75 0 0 1 8 1.02m0 1.5c-.056 0-.11.02-.154.054l-5.25 4.12a.251.251 0 0 0-.096.196v6.61H5v-3.25C5 9.56 5.56 9 6.25 9h3.5c.69 0 1.25.56 1.25 1.25v3.25h2.5V6.89a.25.25 0 0 0-.096-.196l-5.25-4.12A.251.251 0 0 0 8 2.521Z"
21
+ }));
22
+ }
23
+ const ForwardRef = React.forwardRef(HouseIcon);
24
+ export default ForwardRef;
@@ -103,6 +103,7 @@ export { default as GridIcon } from './GridIcon'
103
103
  export { default as HashIcon } from './HashIcon'
104
104
  export { default as HeadphonesIcon } from './HeadphonesIcon'
105
105
  export { default as HeartIcon } from './HeartIcon'
106
+ export { default as HouseIcon } from './HouseIcon'
106
107
  export { default as InboxIcon } from './InboxIcon'
107
108
  export { default as LayersIcon } from './LayersIcon'
108
109
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon'
@@ -103,6 +103,7 @@ export { default as GridIcon } from './GridIcon.js'
103
103
  export { default as HashIcon } from './HashIcon.js'
104
104
  export { default as HeadphonesIcon } from './HeadphonesIcon.js'
105
105
  export { default as HeartIcon } from './HeartIcon.js'
106
+ export { default as HouseIcon } from './HouseIcon.js'
106
107
  export { default as InboxIcon } from './InboxIcon.js'
107
108
  export { default as LayersIcon } from './LayersIcon.js'
108
109
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon.js'
@@ -103,6 +103,7 @@ export { default as GridIcon } from './GridIcon'
103
103
  export { default as HashIcon } from './HashIcon'
104
104
  export { default as HeadphonesIcon } from './HeadphonesIcon'
105
105
  export { default as HeartIcon } from './HeartIcon'
106
+ export { default as HouseIcon } from './HouseIcon'
106
107
  export { default as InboxIcon } from './InboxIcon'
107
108
  export { default as LayersIcon } from './LayersIcon'
108
109
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon'
@@ -103,6 +103,7 @@ module.exports.GridIcon = require("./GridIcon.js")
103
103
  module.exports.HashIcon = require("./HashIcon.js")
104
104
  module.exports.HeadphonesIcon = require("./HeadphonesIcon.js")
105
105
  module.exports.HeartIcon = require("./HeartIcon.js")
106
+ module.exports.HouseIcon = require("./HouseIcon.js")
106
107
  module.exports.InboxIcon = require("./InboxIcon.js")
107
108
  module.exports.LayersIcon = require("./LayersIcon.js")
108
109
  module.exports.LayoutColumnsIcon = require("./LayoutColumnsIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const HouseIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default HouseIcon;
@@ -0,0 +1,24 @@
1
+ const React = require("react");
2
+ function HouseIcon({
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: "M8 1.02c.392 0 .772.132 1.08.374l5.25 4.119A1.75 1.75 0 0 1 15 6.89v7.36a.75.75 0 0 1-.747.749L10.25 15a.75.75 0 0 1-.75-.75V10.5h-3v3.75a.75.75 0 0 1-.75.75H1.747A.75.75 0 0 1 1 14.25V6.89a1.75 1.75 0 0 1 .67-1.376l5.25-4.12A1.75 1.75 0 0 1 8 1.02"
21
+ }));
22
+ }
23
+ const ForwardRef = React.forwardRef(HouseIcon);
24
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const HouseIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default HouseIcon;
@@ -0,0 +1,24 @@
1
+ import * as React from "react";
2
+ function HouseIcon({
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: "M8 1.02c.392 0 .772.132 1.08.374l5.25 4.119A1.75 1.75 0 0 1 15 6.89v7.36a.75.75 0 0 1-.747.749L10.25 15a.75.75 0 0 1-.75-.75V10.5h-3v3.75a.75.75 0 0 1-.75.75H1.747A.75.75 0 0 1 1 14.25V6.89a1.75 1.75 0 0 1 .67-1.376l5.25-4.12A1.75 1.75 0 0 1 8 1.02"
21
+ }));
22
+ }
23
+ const ForwardRef = React.forwardRef(HouseIcon);
24
+ export default ForwardRef;
@@ -103,6 +103,7 @@ export { default as GridIcon } from './GridIcon'
103
103
  export { default as HashIcon } from './HashIcon'
104
104
  export { default as HeadphonesIcon } from './HeadphonesIcon'
105
105
  export { default as HeartIcon } from './HeartIcon'
106
+ export { default as HouseIcon } from './HouseIcon'
106
107
  export { default as InboxIcon } from './InboxIcon'
107
108
  export { default as LayersIcon } from './LayersIcon'
108
109
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon'
@@ -103,6 +103,7 @@ export { default as GridIcon } from './GridIcon.js'
103
103
  export { default as HashIcon } from './HashIcon.js'
104
104
  export { default as HeadphonesIcon } from './HeadphonesIcon.js'
105
105
  export { default as HeartIcon } from './HeartIcon.js'
106
+ export { default as HouseIcon } from './HouseIcon.js'
106
107
  export { default as InboxIcon } from './InboxIcon.js'
107
108
  export { default as LayersIcon } from './LayersIcon.js'
108
109
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon.js'
@@ -103,6 +103,7 @@ export { default as GridIcon } from './GridIcon'
103
103
  export { default as HashIcon } from './HashIcon'
104
104
  export { default as HeadphonesIcon } from './HeadphonesIcon'
105
105
  export { default as HeartIcon } from './HeartIcon'
106
+ export { default as HouseIcon } from './HouseIcon'
106
107
  export { default as InboxIcon } from './InboxIcon'
107
108
  export { default as LayersIcon } from './LayersIcon'
108
109
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon'
package/16/solid/index.js CHANGED
@@ -103,6 +103,7 @@ module.exports.GridIcon = require("./GridIcon.js")
103
103
  module.exports.HashIcon = require("./HashIcon.js")
104
104
  module.exports.HeadphonesIcon = require("./HeadphonesIcon.js")
105
105
  module.exports.HeartIcon = require("./HeartIcon.js")
106
+ module.exports.HouseIcon = require("./HouseIcon.js")
106
107
  module.exports.InboxIcon = require("./InboxIcon.js")
107
108
  module.exports.LayersIcon = require("./LayersIcon.js")
108
109
  module.exports.LayoutColumnsIcon = require("./LayoutColumnsIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const HouseIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default HouseIcon;
@@ -0,0 +1,24 @@
1
+ const React = require("react");
2
+ function HouseIcon({
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: "M12 2c.389 0 .766.129 1.073.367l8.25 5.675c.427.332.677.842.677 1.382V21.25a.75.75 0 0 1-.747.749L15.25 22a.75.75 0 0 1-.75-.75v-5.5a.25.25 0 0 0-.25-.25h-4.5a.25.25 0 0 0-.25.25v5.5a.75.75 0 0 1-.747.749L2.75 22a.75.75 0 0 1-.75-.75V9.424a1.752 1.752 0 0 1 .677-1.382l8.25-5.675A1.75 1.75 0 0 1 12 2m0 1.5a.251.251 0 0 0-.153.053l-8.25 5.673a.25.25 0 0 0-.097.198V20.5H8v-4.75A1.75 1.75 0 0 1 9.75 14h4.5A1.75 1.75 0 0 1 16 15.75v4.75h4.5V9.424a.251.251 0 0 0-.097-.198l-8.25-5.673A.251.251 0 0 0 12 3.5"
21
+ }));
22
+ }
23
+ const ForwardRef = React.forwardRef(HouseIcon);
24
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const HouseIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default HouseIcon;
@@ -0,0 +1,24 @@
1
+ import * as React from "react";
2
+ function HouseIcon({
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: "M12 2c.389 0 .766.129 1.073.367l8.25 5.675c.427.332.677.842.677 1.382V21.25a.75.75 0 0 1-.747.749L15.25 22a.75.75 0 0 1-.75-.75v-5.5a.25.25 0 0 0-.25-.25h-4.5a.25.25 0 0 0-.25.25v5.5a.75.75 0 0 1-.747.749L2.75 22a.75.75 0 0 1-.75-.75V9.424a1.752 1.752 0 0 1 .677-1.382l8.25-5.675A1.75 1.75 0 0 1 12 2m0 1.5a.251.251 0 0 0-.153.053l-8.25 5.673a.25.25 0 0 0-.097.198V20.5H8v-4.75A1.75 1.75 0 0 1 9.75 14h4.5A1.75 1.75 0 0 1 16 15.75v4.75h4.5V9.424a.251.251 0 0 0-.097-.198l-8.25-5.673A.251.251 0 0 0 12 3.5"
21
+ }));
22
+ }
23
+ const ForwardRef = React.forwardRef(HouseIcon);
24
+ export default ForwardRef;
@@ -103,6 +103,7 @@ export { default as GridIcon } from './GridIcon'
103
103
  export { default as HashIcon } from './HashIcon'
104
104
  export { default as HeadphonesIcon } from './HeadphonesIcon'
105
105
  export { default as HeartIcon } from './HeartIcon'
106
+ export { default as HouseIcon } from './HouseIcon'
106
107
  export { default as InboxIcon } from './InboxIcon'
107
108
  export { default as LayersIcon } from './LayersIcon'
108
109
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon'
@@ -103,6 +103,7 @@ export { default as GridIcon } from './GridIcon.js'
103
103
  export { default as HashIcon } from './HashIcon.js'
104
104
  export { default as HeadphonesIcon } from './HeadphonesIcon.js'
105
105
  export { default as HeartIcon } from './HeartIcon.js'
106
+ export { default as HouseIcon } from './HouseIcon.js'
106
107
  export { default as InboxIcon } from './InboxIcon.js'
107
108
  export { default as LayersIcon } from './LayersIcon.js'
108
109
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon.js'
@@ -103,6 +103,7 @@ export { default as GridIcon } from './GridIcon'
103
103
  export { default as HashIcon } from './HashIcon'
104
104
  export { default as HeadphonesIcon } from './HeadphonesIcon'
105
105
  export { default as HeartIcon } from './HeartIcon'
106
+ export { default as HouseIcon } from './HouseIcon'
106
107
  export { default as InboxIcon } from './InboxIcon'
107
108
  export { default as LayersIcon } from './LayersIcon'
108
109
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon'
@@ -103,6 +103,7 @@ module.exports.GridIcon = require("./GridIcon.js")
103
103
  module.exports.HashIcon = require("./HashIcon.js")
104
104
  module.exports.HeadphonesIcon = require("./HeadphonesIcon.js")
105
105
  module.exports.HeartIcon = require("./HeartIcon.js")
106
+ module.exports.HouseIcon = require("./HouseIcon.js")
106
107
  module.exports.InboxIcon = require("./InboxIcon.js")
107
108
  module.exports.LayersIcon = require("./LayersIcon.js")
108
109
  module.exports.LayoutColumnsIcon = require("./LayoutColumnsIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const HouseIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default HouseIcon;
@@ -0,0 +1,24 @@
1
+ const React = require("react");
2
+ function HouseIcon({
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: "M12 2c.389 0 .766.129 1.073.367l8.25 5.675c.427.332.677.842.677 1.382V21.25a.75.75 0 0 1-.747.749L15.25 22a.75.75 0 0 1-.75-.75v-5.5a.25.25 0 0 0-.25-.25h-4.5a.25.25 0 0 0-.25.25v5.5a.75.75 0 0 1-.747.749L2.75 22l-.147-.015A.75.75 0 0 1 2 21.25V9.424a1.751 1.751 0 0 1 .677-1.382l8.25-5.675A1.75 1.75 0 0 1 12 2"
21
+ }));
22
+ }
23
+ const ForwardRef = React.forwardRef(HouseIcon);
24
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const HouseIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default HouseIcon;
@@ -0,0 +1,24 @@
1
+ import * as React from "react";
2
+ function HouseIcon({
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: "M12 2c.389 0 .766.129 1.073.367l8.25 5.675c.427.332.677.842.677 1.382V21.25a.75.75 0 0 1-.747.749L15.25 22a.75.75 0 0 1-.75-.75v-5.5a.25.25 0 0 0-.25-.25h-4.5a.25.25 0 0 0-.25.25v5.5a.75.75 0 0 1-.747.749L2.75 22l-.147-.015A.75.75 0 0 1 2 21.25V9.424a1.751 1.751 0 0 1 .677-1.382l8.25-5.675A1.75 1.75 0 0 1 12 2"
21
+ }));
22
+ }
23
+ const ForwardRef = React.forwardRef(HouseIcon);
24
+ export default ForwardRef;
@@ -103,6 +103,7 @@ export { default as GridIcon } from './GridIcon'
103
103
  export { default as HashIcon } from './HashIcon'
104
104
  export { default as HeadphonesIcon } from './HeadphonesIcon'
105
105
  export { default as HeartIcon } from './HeartIcon'
106
+ export { default as HouseIcon } from './HouseIcon'
106
107
  export { default as InboxIcon } from './InboxIcon'
107
108
  export { default as LayersIcon } from './LayersIcon'
108
109
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon'
@@ -103,6 +103,7 @@ export { default as GridIcon } from './GridIcon.js'
103
103
  export { default as HashIcon } from './HashIcon.js'
104
104
  export { default as HeadphonesIcon } from './HeadphonesIcon.js'
105
105
  export { default as HeartIcon } from './HeartIcon.js'
106
+ export { default as HouseIcon } from './HouseIcon.js'
106
107
  export { default as InboxIcon } from './InboxIcon.js'
107
108
  export { default as LayersIcon } from './LayersIcon.js'
108
109
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon.js'
@@ -103,6 +103,7 @@ export { default as GridIcon } from './GridIcon'
103
103
  export { default as HashIcon } from './HashIcon'
104
104
  export { default as HeadphonesIcon } from './HeadphonesIcon'
105
105
  export { default as HeartIcon } from './HeartIcon'
106
+ export { default as HouseIcon } from './HouseIcon'
106
107
  export { default as InboxIcon } from './InboxIcon'
107
108
  export { default as LayersIcon } from './LayersIcon'
108
109
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon'
package/24/solid/index.js CHANGED
@@ -103,6 +103,7 @@ module.exports.GridIcon = require("./GridIcon.js")
103
103
  module.exports.HashIcon = require("./HashIcon.js")
104
104
  module.exports.HeadphonesIcon = require("./HeadphonesIcon.js")
105
105
  module.exports.HeartIcon = require("./HeartIcon.js")
106
+ module.exports.HouseIcon = require("./HouseIcon.js")
106
107
  module.exports.InboxIcon = require("./InboxIcon.js")
107
108
  module.exports.LayersIcon = require("./LayersIcon.js")
108
109
  module.exports.LayoutColumnsIcon = require("./LayoutColumnsIcon.js")
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  A clean, reliable icon set built for React.
4
4
 
5
- **169 icons** available in multiple sizes and styles.
5
+ **170 icons** available in multiple sizes and styles.
6
6
 
7
7
  ---
8
8
 
@@ -54,7 +54,7 @@ Icons follow an `UpperCamelCase` naming convention and always end with the word
54
54
 
55
55
  ## Icon Count
56
56
 
57
- 169 icons
57
+ 170 icons
58
58
 
59
59
  ## License
60
60
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "metal-icons",
3
3
  "license": "MIT",
4
- "version": "0.7.0",
4
+ "version": "0.8.0",
5
5
  "description": "A flexible React icon library.",
6
6
  "keywords": [
7
7
  "design",