metal-icons 0.7.0 → 0.9.1

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.
Files changed (50) hide show
  1. package/16/outline/CircleIcon.d.ts +3 -0
  2. package/16/outline/CircleIcon.js +23 -0
  3. package/16/outline/HouseIcon.d.ts +3 -0
  4. package/16/outline/HouseIcon.js +24 -0
  5. package/16/outline/esm/CircleIcon.d.ts +3 -0
  6. package/16/outline/esm/CircleIcon.js +23 -0
  7. package/16/outline/esm/HouseIcon.d.ts +3 -0
  8. package/16/outline/esm/HouseIcon.js +24 -0
  9. package/16/outline/esm/index.d.ts +2 -0
  10. package/16/outline/esm/index.js +2 -0
  11. package/16/outline/index.d.ts +2 -0
  12. package/16/outline/index.js +2 -0
  13. package/16/solid/CircleIcon.d.ts +3 -0
  14. package/16/solid/CircleIcon.js +23 -0
  15. package/16/solid/HouseIcon.d.ts +3 -0
  16. package/16/solid/HouseIcon.js +24 -0
  17. package/16/solid/esm/CircleIcon.d.ts +3 -0
  18. package/16/solid/esm/CircleIcon.js +23 -0
  19. package/16/solid/esm/HouseIcon.d.ts +3 -0
  20. package/16/solid/esm/HouseIcon.js +24 -0
  21. package/16/solid/esm/index.d.ts +2 -0
  22. package/16/solid/esm/index.js +2 -0
  23. package/16/solid/index.d.ts +2 -0
  24. package/16/solid/index.js +2 -0
  25. package/24/outline/CircleIcon.d.ts +3 -0
  26. package/24/outline/CircleIcon.js +23 -0
  27. package/24/outline/HouseIcon.d.ts +3 -0
  28. package/24/outline/HouseIcon.js +24 -0
  29. package/24/outline/esm/CircleIcon.d.ts +3 -0
  30. package/24/outline/esm/CircleIcon.js +23 -0
  31. package/24/outline/esm/HouseIcon.d.ts +3 -0
  32. package/24/outline/esm/HouseIcon.js +24 -0
  33. package/24/outline/esm/index.d.ts +2 -0
  34. package/24/outline/esm/index.js +2 -0
  35. package/24/outline/index.d.ts +2 -0
  36. package/24/outline/index.js +2 -0
  37. package/24/solid/CircleIcon.d.ts +3 -0
  38. package/24/solid/CircleIcon.js +23 -0
  39. package/24/solid/HouseIcon.d.ts +3 -0
  40. package/24/solid/HouseIcon.js +24 -0
  41. package/24/solid/esm/CircleIcon.d.ts +3 -0
  42. package/24/solid/esm/CircleIcon.js +23 -0
  43. package/24/solid/esm/HouseIcon.d.ts +3 -0
  44. package/24/solid/esm/HouseIcon.js +24 -0
  45. package/24/solid/esm/index.d.ts +2 -0
  46. package/24/solid/esm/index.js +2 -0
  47. package/24/solid/index.d.ts +2 -0
  48. package/24/solid/index.js +2 -0
  49. package/README.md +2 -2
  50. package/package.json +1 -1
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const CircleIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default CircleIcon;
@@ -0,0 +1,23 @@
1
+ const React = require("react");
2
+ function CircleIcon({
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: "M3.404 3.404a6.5 6.5 0 1 0 9.192 9.192 6.5 6.5 0 0 0-9.192-9.192M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(CircleIcon);
23
+ 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
+ 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 CircleIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default CircleIcon;
@@ -0,0 +1,23 @@
1
+ import * as React from "react";
2
+ function CircleIcon({
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: "M3.404 3.404a6.5 6.5 0 1 0 9.192 9.192 6.5 6.5 0 0 0-9.192-9.192M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(CircleIcon);
23
+ export default 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;
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
65
65
  export { default as CircleHelpIcon } from './CircleHelpIcon'
66
66
  export { default as CircleInfoIcon } from './CircleInfoIcon'
67
67
  export { default as CircleMinusIcon } from './CircleMinusIcon'
68
+ export { default as CircleIcon } from './CircleIcon'
68
69
  export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
69
70
  export { default as ClipboardXIcon } from './ClipboardXIcon'
70
71
  export { default as ClipboardIcon } from './ClipboardIcon'
@@ -103,6 +104,7 @@ export { default as GridIcon } from './GridIcon'
103
104
  export { default as HashIcon } from './HashIcon'
104
105
  export { default as HeadphonesIcon } from './HeadphonesIcon'
105
106
  export { default as HeartIcon } from './HeartIcon'
107
+ export { default as HouseIcon } from './HouseIcon'
106
108
  export { default as InboxIcon } from './InboxIcon'
107
109
  export { default as LayersIcon } from './LayersIcon'
108
110
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon'
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon.js'
65
65
  export { default as CircleHelpIcon } from './CircleHelpIcon.js'
66
66
  export { default as CircleInfoIcon } from './CircleInfoIcon.js'
67
67
  export { default as CircleMinusIcon } from './CircleMinusIcon.js'
68
+ export { default as CircleIcon } from './CircleIcon.js'
68
69
  export { default as ClipboardCheckIcon } from './ClipboardCheckIcon.js'
69
70
  export { default as ClipboardXIcon } from './ClipboardXIcon.js'
70
71
  export { default as ClipboardIcon } from './ClipboardIcon.js'
@@ -103,6 +104,7 @@ export { default as GridIcon } from './GridIcon.js'
103
104
  export { default as HashIcon } from './HashIcon.js'
104
105
  export { default as HeadphonesIcon } from './HeadphonesIcon.js'
105
106
  export { default as HeartIcon } from './HeartIcon.js'
107
+ export { default as HouseIcon } from './HouseIcon.js'
106
108
  export { default as InboxIcon } from './InboxIcon.js'
107
109
  export { default as LayersIcon } from './LayersIcon.js'
108
110
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon.js'
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
65
65
  export { default as CircleHelpIcon } from './CircleHelpIcon'
66
66
  export { default as CircleInfoIcon } from './CircleInfoIcon'
67
67
  export { default as CircleMinusIcon } from './CircleMinusIcon'
68
+ export { default as CircleIcon } from './CircleIcon'
68
69
  export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
69
70
  export { default as ClipboardXIcon } from './ClipboardXIcon'
70
71
  export { default as ClipboardIcon } from './ClipboardIcon'
@@ -103,6 +104,7 @@ export { default as GridIcon } from './GridIcon'
103
104
  export { default as HashIcon } from './HashIcon'
104
105
  export { default as HeadphonesIcon } from './HeadphonesIcon'
105
106
  export { default as HeartIcon } from './HeartIcon'
107
+ export { default as HouseIcon } from './HouseIcon'
106
108
  export { default as InboxIcon } from './InboxIcon'
107
109
  export { default as LayersIcon } from './LayersIcon'
108
110
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon'
@@ -65,6 +65,7 @@ module.exports.CircleCloseIcon = require("./CircleCloseIcon.js")
65
65
  module.exports.CircleHelpIcon = require("./CircleHelpIcon.js")
66
66
  module.exports.CircleInfoIcon = require("./CircleInfoIcon.js")
67
67
  module.exports.CircleMinusIcon = require("./CircleMinusIcon.js")
68
+ module.exports.CircleIcon = require("./CircleIcon.js")
68
69
  module.exports.ClipboardCheckIcon = require("./ClipboardCheckIcon.js")
69
70
  module.exports.ClipboardXIcon = require("./ClipboardXIcon.js")
70
71
  module.exports.ClipboardIcon = require("./ClipboardIcon.js")
@@ -103,6 +104,7 @@ module.exports.GridIcon = require("./GridIcon.js")
103
104
  module.exports.HashIcon = require("./HashIcon.js")
104
105
  module.exports.HeadphonesIcon = require("./HeadphonesIcon.js")
105
106
  module.exports.HeartIcon = require("./HeartIcon.js")
107
+ module.exports.HouseIcon = require("./HouseIcon.js")
106
108
  module.exports.InboxIcon = require("./InboxIcon.js")
107
109
  module.exports.LayersIcon = require("./LayersIcon.js")
108
110
  module.exports.LayoutColumnsIcon = require("./LayoutColumnsIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const CircleIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default CircleIcon;
@@ -0,0 +1,23 @@
1
+ const React = require("react");
2
+ function CircleIcon({
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: "M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(CircleIcon);
23
+ 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
+ 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 CircleIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default CircleIcon;
@@ -0,0 +1,23 @@
1
+ import * as React from "react";
2
+ function CircleIcon({
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: "M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(CircleIcon);
23
+ export default 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;
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
65
65
  export { default as CircleHelpIcon } from './CircleHelpIcon'
66
66
  export { default as CircleInfoIcon } from './CircleInfoIcon'
67
67
  export { default as CircleMinusIcon } from './CircleMinusIcon'
68
+ export { default as CircleIcon } from './CircleIcon'
68
69
  export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
69
70
  export { default as ClipboardXIcon } from './ClipboardXIcon'
70
71
  export { default as ClipboardIcon } from './ClipboardIcon'
@@ -103,6 +104,7 @@ export { default as GridIcon } from './GridIcon'
103
104
  export { default as HashIcon } from './HashIcon'
104
105
  export { default as HeadphonesIcon } from './HeadphonesIcon'
105
106
  export { default as HeartIcon } from './HeartIcon'
107
+ export { default as HouseIcon } from './HouseIcon'
106
108
  export { default as InboxIcon } from './InboxIcon'
107
109
  export { default as LayersIcon } from './LayersIcon'
108
110
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon'
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon.js'
65
65
  export { default as CircleHelpIcon } from './CircleHelpIcon.js'
66
66
  export { default as CircleInfoIcon } from './CircleInfoIcon.js'
67
67
  export { default as CircleMinusIcon } from './CircleMinusIcon.js'
68
+ export { default as CircleIcon } from './CircleIcon.js'
68
69
  export { default as ClipboardCheckIcon } from './ClipboardCheckIcon.js'
69
70
  export { default as ClipboardXIcon } from './ClipboardXIcon.js'
70
71
  export { default as ClipboardIcon } from './ClipboardIcon.js'
@@ -103,6 +104,7 @@ export { default as GridIcon } from './GridIcon.js'
103
104
  export { default as HashIcon } from './HashIcon.js'
104
105
  export { default as HeadphonesIcon } from './HeadphonesIcon.js'
105
106
  export { default as HeartIcon } from './HeartIcon.js'
107
+ export { default as HouseIcon } from './HouseIcon.js'
106
108
  export { default as InboxIcon } from './InboxIcon.js'
107
109
  export { default as LayersIcon } from './LayersIcon.js'
108
110
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon.js'
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
65
65
  export { default as CircleHelpIcon } from './CircleHelpIcon'
66
66
  export { default as CircleInfoIcon } from './CircleInfoIcon'
67
67
  export { default as CircleMinusIcon } from './CircleMinusIcon'
68
+ export { default as CircleIcon } from './CircleIcon'
68
69
  export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
69
70
  export { default as ClipboardXIcon } from './ClipboardXIcon'
70
71
  export { default as ClipboardIcon } from './ClipboardIcon'
@@ -103,6 +104,7 @@ export { default as GridIcon } from './GridIcon'
103
104
  export { default as HashIcon } from './HashIcon'
104
105
  export { default as HeadphonesIcon } from './HeadphonesIcon'
105
106
  export { default as HeartIcon } from './HeartIcon'
107
+ export { default as HouseIcon } from './HouseIcon'
106
108
  export { default as InboxIcon } from './InboxIcon'
107
109
  export { default as LayersIcon } from './LayersIcon'
108
110
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon'
package/16/solid/index.js CHANGED
@@ -65,6 +65,7 @@ module.exports.CircleCloseIcon = require("./CircleCloseIcon.js")
65
65
  module.exports.CircleHelpIcon = require("./CircleHelpIcon.js")
66
66
  module.exports.CircleInfoIcon = require("./CircleInfoIcon.js")
67
67
  module.exports.CircleMinusIcon = require("./CircleMinusIcon.js")
68
+ module.exports.CircleIcon = require("./CircleIcon.js")
68
69
  module.exports.ClipboardCheckIcon = require("./ClipboardCheckIcon.js")
69
70
  module.exports.ClipboardXIcon = require("./ClipboardXIcon.js")
70
71
  module.exports.ClipboardIcon = require("./ClipboardIcon.js")
@@ -103,6 +104,7 @@ module.exports.GridIcon = require("./GridIcon.js")
103
104
  module.exports.HashIcon = require("./HashIcon.js")
104
105
  module.exports.HeadphonesIcon = require("./HeadphonesIcon.js")
105
106
  module.exports.HeartIcon = require("./HeartIcon.js")
107
+ module.exports.HouseIcon = require("./HouseIcon.js")
106
108
  module.exports.InboxIcon = require("./InboxIcon.js")
107
109
  module.exports.LayersIcon = require("./LayersIcon.js")
108
110
  module.exports.LayoutColumnsIcon = require("./LayoutColumnsIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const CircleIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default CircleIcon;
@@ -0,0 +1,23 @@
1
+ const React = require("react");
2
+ function CircleIcon({
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: "M12 2.5a9.5 9.5 0 1 0 0 19 9.5 9.5 0 0 0 0-19M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(CircleIcon);
23
+ 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
+ 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 CircleIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default CircleIcon;
@@ -0,0 +1,23 @@
1
+ import * as React from "react";
2
+ function CircleIcon({
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: "M12 2.5a9.5 9.5 0 1 0 0 19 9.5 9.5 0 0 0 0-19M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(CircleIcon);
23
+ export default 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;
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
65
65
  export { default as CircleHelpIcon } from './CircleHelpIcon'
66
66
  export { default as CircleInfoIcon } from './CircleInfoIcon'
67
67
  export { default as CircleMinusIcon } from './CircleMinusIcon'
68
+ export { default as CircleIcon } from './CircleIcon'
68
69
  export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
69
70
  export { default as ClipboardXIcon } from './ClipboardXIcon'
70
71
  export { default as ClipboardIcon } from './ClipboardIcon'
@@ -103,6 +104,7 @@ export { default as GridIcon } from './GridIcon'
103
104
  export { default as HashIcon } from './HashIcon'
104
105
  export { default as HeadphonesIcon } from './HeadphonesIcon'
105
106
  export { default as HeartIcon } from './HeartIcon'
107
+ export { default as HouseIcon } from './HouseIcon'
106
108
  export { default as InboxIcon } from './InboxIcon'
107
109
  export { default as LayersIcon } from './LayersIcon'
108
110
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon'
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon.js'
65
65
  export { default as CircleHelpIcon } from './CircleHelpIcon.js'
66
66
  export { default as CircleInfoIcon } from './CircleInfoIcon.js'
67
67
  export { default as CircleMinusIcon } from './CircleMinusIcon.js'
68
+ export { default as CircleIcon } from './CircleIcon.js'
68
69
  export { default as ClipboardCheckIcon } from './ClipboardCheckIcon.js'
69
70
  export { default as ClipboardXIcon } from './ClipboardXIcon.js'
70
71
  export { default as ClipboardIcon } from './ClipboardIcon.js'
@@ -103,6 +104,7 @@ export { default as GridIcon } from './GridIcon.js'
103
104
  export { default as HashIcon } from './HashIcon.js'
104
105
  export { default as HeadphonesIcon } from './HeadphonesIcon.js'
105
106
  export { default as HeartIcon } from './HeartIcon.js'
107
+ export { default as HouseIcon } from './HouseIcon.js'
106
108
  export { default as InboxIcon } from './InboxIcon.js'
107
109
  export { default as LayersIcon } from './LayersIcon.js'
108
110
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon.js'
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
65
65
  export { default as CircleHelpIcon } from './CircleHelpIcon'
66
66
  export { default as CircleInfoIcon } from './CircleInfoIcon'
67
67
  export { default as CircleMinusIcon } from './CircleMinusIcon'
68
+ export { default as CircleIcon } from './CircleIcon'
68
69
  export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
69
70
  export { default as ClipboardXIcon } from './ClipboardXIcon'
70
71
  export { default as ClipboardIcon } from './ClipboardIcon'
@@ -103,6 +104,7 @@ export { default as GridIcon } from './GridIcon'
103
104
  export { default as HashIcon } from './HashIcon'
104
105
  export { default as HeadphonesIcon } from './HeadphonesIcon'
105
106
  export { default as HeartIcon } from './HeartIcon'
107
+ export { default as HouseIcon } from './HouseIcon'
106
108
  export { default as InboxIcon } from './InboxIcon'
107
109
  export { default as LayersIcon } from './LayersIcon'
108
110
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon'
@@ -65,6 +65,7 @@ module.exports.CircleCloseIcon = require("./CircleCloseIcon.js")
65
65
  module.exports.CircleHelpIcon = require("./CircleHelpIcon.js")
66
66
  module.exports.CircleInfoIcon = require("./CircleInfoIcon.js")
67
67
  module.exports.CircleMinusIcon = require("./CircleMinusIcon.js")
68
+ module.exports.CircleIcon = require("./CircleIcon.js")
68
69
  module.exports.ClipboardCheckIcon = require("./ClipboardCheckIcon.js")
69
70
  module.exports.ClipboardXIcon = require("./ClipboardXIcon.js")
70
71
  module.exports.ClipboardIcon = require("./ClipboardIcon.js")
@@ -103,6 +104,7 @@ module.exports.GridIcon = require("./GridIcon.js")
103
104
  module.exports.HashIcon = require("./HashIcon.js")
104
105
  module.exports.HeadphonesIcon = require("./HeadphonesIcon.js")
105
106
  module.exports.HeartIcon = require("./HeartIcon.js")
107
+ module.exports.HouseIcon = require("./HouseIcon.js")
106
108
  module.exports.InboxIcon = require("./InboxIcon.js")
107
109
  module.exports.LayersIcon = require("./LayersIcon.js")
108
110
  module.exports.LayoutColumnsIcon = require("./LayoutColumnsIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const CircleIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default CircleIcon;
@@ -0,0 +1,23 @@
1
+ const React = require("react");
2
+ function CircleIcon({
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: "M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(CircleIcon);
23
+ 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
+ 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 CircleIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default CircleIcon;
@@ -0,0 +1,23 @@
1
+ import * as React from "react";
2
+ function CircleIcon({
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: "M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(CircleIcon);
23
+ export default 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;
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
65
65
  export { default as CircleHelpIcon } from './CircleHelpIcon'
66
66
  export { default as CircleInfoIcon } from './CircleInfoIcon'
67
67
  export { default as CircleMinusIcon } from './CircleMinusIcon'
68
+ export { default as CircleIcon } from './CircleIcon'
68
69
  export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
69
70
  export { default as ClipboardXIcon } from './ClipboardXIcon'
70
71
  export { default as ClipboardIcon } from './ClipboardIcon'
@@ -103,6 +104,7 @@ export { default as GridIcon } from './GridIcon'
103
104
  export { default as HashIcon } from './HashIcon'
104
105
  export { default as HeadphonesIcon } from './HeadphonesIcon'
105
106
  export { default as HeartIcon } from './HeartIcon'
107
+ export { default as HouseIcon } from './HouseIcon'
106
108
  export { default as InboxIcon } from './InboxIcon'
107
109
  export { default as LayersIcon } from './LayersIcon'
108
110
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon'
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon.js'
65
65
  export { default as CircleHelpIcon } from './CircleHelpIcon.js'
66
66
  export { default as CircleInfoIcon } from './CircleInfoIcon.js'
67
67
  export { default as CircleMinusIcon } from './CircleMinusIcon.js'
68
+ export { default as CircleIcon } from './CircleIcon.js'
68
69
  export { default as ClipboardCheckIcon } from './ClipboardCheckIcon.js'
69
70
  export { default as ClipboardXIcon } from './ClipboardXIcon.js'
70
71
  export { default as ClipboardIcon } from './ClipboardIcon.js'
@@ -103,6 +104,7 @@ export { default as GridIcon } from './GridIcon.js'
103
104
  export { default as HashIcon } from './HashIcon.js'
104
105
  export { default as HeadphonesIcon } from './HeadphonesIcon.js'
105
106
  export { default as HeartIcon } from './HeartIcon.js'
107
+ export { default as HouseIcon } from './HouseIcon.js'
106
108
  export { default as InboxIcon } from './InboxIcon.js'
107
109
  export { default as LayersIcon } from './LayersIcon.js'
108
110
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon.js'
@@ -65,6 +65,7 @@ export { default as CircleCloseIcon } from './CircleCloseIcon'
65
65
  export { default as CircleHelpIcon } from './CircleHelpIcon'
66
66
  export { default as CircleInfoIcon } from './CircleInfoIcon'
67
67
  export { default as CircleMinusIcon } from './CircleMinusIcon'
68
+ export { default as CircleIcon } from './CircleIcon'
68
69
  export { default as ClipboardCheckIcon } from './ClipboardCheckIcon'
69
70
  export { default as ClipboardXIcon } from './ClipboardXIcon'
70
71
  export { default as ClipboardIcon } from './ClipboardIcon'
@@ -103,6 +104,7 @@ export { default as GridIcon } from './GridIcon'
103
104
  export { default as HashIcon } from './HashIcon'
104
105
  export { default as HeadphonesIcon } from './HeadphonesIcon'
105
106
  export { default as HeartIcon } from './HeartIcon'
107
+ export { default as HouseIcon } from './HouseIcon'
106
108
  export { default as InboxIcon } from './InboxIcon'
107
109
  export { default as LayersIcon } from './LayersIcon'
108
110
  export { default as LayoutColumnsIcon } from './LayoutColumnsIcon'
package/24/solid/index.js CHANGED
@@ -65,6 +65,7 @@ module.exports.CircleCloseIcon = require("./CircleCloseIcon.js")
65
65
  module.exports.CircleHelpIcon = require("./CircleHelpIcon.js")
66
66
  module.exports.CircleInfoIcon = require("./CircleInfoIcon.js")
67
67
  module.exports.CircleMinusIcon = require("./CircleMinusIcon.js")
68
+ module.exports.CircleIcon = require("./CircleIcon.js")
68
69
  module.exports.ClipboardCheckIcon = require("./ClipboardCheckIcon.js")
69
70
  module.exports.ClipboardXIcon = require("./ClipboardXIcon.js")
70
71
  module.exports.ClipboardIcon = require("./ClipboardIcon.js")
@@ -103,6 +104,7 @@ module.exports.GridIcon = require("./GridIcon.js")
103
104
  module.exports.HashIcon = require("./HashIcon.js")
104
105
  module.exports.HeadphonesIcon = require("./HeadphonesIcon.js")
105
106
  module.exports.HeartIcon = require("./HeartIcon.js")
107
+ module.exports.HouseIcon = require("./HouseIcon.js")
106
108
  module.exports.InboxIcon = require("./InboxIcon.js")
107
109
  module.exports.LayersIcon = require("./LayersIcon.js")
108
110
  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.9.1",
5
5
  "description": "A flexible React icon library.",
6
6
  "keywords": [
7
7
  "design",