metal-icons 0.3.0 → 0.4.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 ServerIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default ServerIcon;
@@ -0,0 +1,23 @@
1
+ const React = require("react");
2
+ function ServerIcon({
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: "M13.25 9c.966 0 1.75.784 1.75 1.75v2.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25v-2.5C1 9.784 1.784 9 2.75 9zm-10.5 1.5a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h7.75v-3zm9.25 3h1.25a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25H12zM13.25 1c.966 0 1.75.784 1.75 1.75v2.5A1.75 1.75 0 0 1 13.25 7H2.75A1.75 1.75 0 0 1 1 5.25v-2.5C1 1.784 1.784 1 2.75 1zM12 5.5h1.25a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25H12zm-9.25-3a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h7.75v-3z"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(ServerIcon);
23
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const ServerIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default ServerIcon;
@@ -0,0 +1,23 @@
1
+ import * as React from "react";
2
+ function ServerIcon({
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: "M13.25 9c.966 0 1.75.784 1.75 1.75v2.5A1.75 1.75 0 0 1 13.25 15H2.75A1.75 1.75 0 0 1 1 13.25v-2.5C1 9.784 1.784 9 2.75 9zm-10.5 1.5a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h7.75v-3zm9.25 3h1.25a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25H12zM13.25 1c.966 0 1.75.784 1.75 1.75v2.5A1.75 1.75 0 0 1 13.25 7H2.75A1.75 1.75 0 0 1 1 5.25v-2.5C1 1.784 1.784 1 2.75 1zM12 5.5h1.25a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25H12zm-9.25-3a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h7.75v-3z"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(ServerIcon);
23
+ export default ForwardRef;
@@ -130,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon'
130
130
  export { default as RowsIcon } from './RowsIcon'
131
131
  export { default as SearchIcon } from './SearchIcon'
132
132
  export { default as SendIcon } from './SendIcon'
133
+ export { default as ServerIcon } from './ServerIcon'
133
134
  export { default as ShareIcon } from './ShareIcon'
134
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon'
135
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon'
@@ -130,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon.js'
130
130
  export { default as RowsIcon } from './RowsIcon.js'
131
131
  export { default as SearchIcon } from './SearchIcon.js'
132
132
  export { default as SendIcon } from './SendIcon.js'
133
+ export { default as ServerIcon } from './ServerIcon.js'
133
134
  export { default as ShareIcon } from './ShareIcon.js'
134
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon.js'
135
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon.js'
@@ -130,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon'
130
130
  export { default as RowsIcon } from './RowsIcon'
131
131
  export { default as SearchIcon } from './SearchIcon'
132
132
  export { default as SendIcon } from './SendIcon'
133
+ export { default as ServerIcon } from './ServerIcon'
133
134
  export { default as ShareIcon } from './ShareIcon'
134
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon'
135
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon'
@@ -130,6 +130,7 @@ module.exports.RepeatIcon = require("./RepeatIcon.js")
130
130
  module.exports.RowsIcon = require("./RowsIcon.js")
131
131
  module.exports.SearchIcon = require("./SearchIcon.js")
132
132
  module.exports.SendIcon = require("./SendIcon.js")
133
+ module.exports.ServerIcon = require("./ServerIcon.js")
133
134
  module.exports.ShareIcon = require("./ShareIcon.js")
134
135
  module.exports.ShieldAlertIcon = require("./ShieldAlertIcon.js")
135
136
  module.exports.ShieldCheckIcon = require("./ShieldCheckIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const ServerIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default ServerIcon;
@@ -0,0 +1,22 @@
1
+ const React = require("react");
2
+ function ServerIcon({
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
+ d: "M10.5 15H2.75A1.75 1.75 0 0 1 1 13.25v-2.5C1 9.784 1.784 9 2.75 9h7.75zm2.75-6c.966 0 1.75.784 1.75 1.75v2.5A1.75 1.75 0 0 1 13.25 15H12V9zM10.5 7H2.75A1.75 1.75 0 0 1 1 5.25v-2.5C1 1.784 1.784 1 2.75 1h7.75zm2.75-6c.966 0 1.75.784 1.75 1.75v2.5A1.75 1.75 0 0 1 13.25 7H12V1z"
19
+ }));
20
+ }
21
+ const ForwardRef = React.forwardRef(ServerIcon);
22
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const ServerIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default ServerIcon;
@@ -0,0 +1,22 @@
1
+ import * as React from "react";
2
+ function ServerIcon({
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
+ d: "M10.5 15H2.75A1.75 1.75 0 0 1 1 13.25v-2.5C1 9.784 1.784 9 2.75 9h7.75zm2.75-6c.966 0 1.75.784 1.75 1.75v2.5A1.75 1.75 0 0 1 13.25 15H12V9zM10.5 7H2.75A1.75 1.75 0 0 1 1 5.25v-2.5C1 1.784 1.784 1 2.75 1h7.75zm2.75-6c.966 0 1.75.784 1.75 1.75v2.5A1.75 1.75 0 0 1 13.25 7H12V1z"
19
+ }));
20
+ }
21
+ const ForwardRef = React.forwardRef(ServerIcon);
22
+ export default ForwardRef;
@@ -130,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon'
130
130
  export { default as RowsIcon } from './RowsIcon'
131
131
  export { default as SearchIcon } from './SearchIcon'
132
132
  export { default as SendIcon } from './SendIcon'
133
+ export { default as ServerIcon } from './ServerIcon'
133
134
  export { default as ShareIcon } from './ShareIcon'
134
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon'
135
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon'
@@ -130,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon.js'
130
130
  export { default as RowsIcon } from './RowsIcon.js'
131
131
  export { default as SearchIcon } from './SearchIcon.js'
132
132
  export { default as SendIcon } from './SendIcon.js'
133
+ export { default as ServerIcon } from './ServerIcon.js'
133
134
  export { default as ShareIcon } from './ShareIcon.js'
134
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon.js'
135
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon.js'
@@ -130,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon'
130
130
  export { default as RowsIcon } from './RowsIcon'
131
131
  export { default as SearchIcon } from './SearchIcon'
132
132
  export { default as SendIcon } from './SendIcon'
133
+ export { default as ServerIcon } from './ServerIcon'
133
134
  export { default as ShareIcon } from './ShareIcon'
134
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon'
135
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon'
package/16/solid/index.js CHANGED
@@ -130,6 +130,7 @@ module.exports.RepeatIcon = require("./RepeatIcon.js")
130
130
  module.exports.RowsIcon = require("./RowsIcon.js")
131
131
  module.exports.SearchIcon = require("./SearchIcon.js")
132
132
  module.exports.SendIcon = require("./SendIcon.js")
133
+ module.exports.ServerIcon = require("./ServerIcon.js")
133
134
  module.exports.ShareIcon = require("./ShareIcon.js")
134
135
  module.exports.ShieldAlertIcon = require("./ShieldAlertIcon.js")
135
136
  module.exports.ShieldCheckIcon = require("./ShieldCheckIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const ServerIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default ServerIcon;
@@ -0,0 +1,23 @@
1
+ const React = require("react");
2
+ function ServerIcon({
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: "M20.25 13c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25v-5.5c0-.966.784-1.75 1.75-1.75zm-16.5 1.5a.25.25 0 0 0-.25.25v5.5c0 .138.112.25.25.25H16.5v-6zm14.25 6h2.25a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25H18zM20.25 2c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 20.25 11H3.75A1.75 1.75 0 0 1 2 9.25v-5.5C2 2.784 2.784 2 3.75 2zM18 9.5h2.25a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25H18zm-14.25-6a.25.25 0 0 0-.25.25v5.5c0 .138.112.25.25.25H16.5v-6z"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(ServerIcon);
23
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const ServerIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default ServerIcon;
@@ -0,0 +1,23 @@
1
+ import * as React from "react";
2
+ function ServerIcon({
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: "M20.25 13c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 20.25 22H3.75A1.75 1.75 0 0 1 2 20.25v-5.5c0-.966.784-1.75 1.75-1.75zm-16.5 1.5a.25.25 0 0 0-.25.25v5.5c0 .138.112.25.25.25H16.5v-6zm14.25 6h2.25a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25H18zM20.25 2c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 20.25 11H3.75A1.75 1.75 0 0 1 2 9.25v-5.5C2 2.784 2.784 2 3.75 2zM18 9.5h2.25a.25.25 0 0 0 .25-.25v-5.5a.25.25 0 0 0-.25-.25H18zm-14.25-6a.25.25 0 0 0-.25.25v5.5c0 .138.112.25.25.25H16.5v-6z"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(ServerIcon);
23
+ export default ForwardRef;
@@ -130,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon'
130
130
  export { default as RowsIcon } from './RowsIcon'
131
131
  export { default as SearchIcon } from './SearchIcon'
132
132
  export { default as SendIcon } from './SendIcon'
133
+ export { default as ServerIcon } from './ServerIcon'
133
134
  export { default as ShareIcon } from './ShareIcon'
134
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon'
135
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon'
@@ -130,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon.js'
130
130
  export { default as RowsIcon } from './RowsIcon.js'
131
131
  export { default as SearchIcon } from './SearchIcon.js'
132
132
  export { default as SendIcon } from './SendIcon.js'
133
+ export { default as ServerIcon } from './ServerIcon.js'
133
134
  export { default as ShareIcon } from './ShareIcon.js'
134
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon.js'
135
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon.js'
@@ -130,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon'
130
130
  export { default as RowsIcon } from './RowsIcon'
131
131
  export { default as SearchIcon } from './SearchIcon'
132
132
  export { default as SendIcon } from './SendIcon'
133
+ export { default as ServerIcon } from './ServerIcon'
133
134
  export { default as ShareIcon } from './ShareIcon'
134
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon'
135
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon'
@@ -130,6 +130,7 @@ module.exports.RepeatIcon = require("./RepeatIcon.js")
130
130
  module.exports.RowsIcon = require("./RowsIcon.js")
131
131
  module.exports.SearchIcon = require("./SearchIcon.js")
132
132
  module.exports.SendIcon = require("./SendIcon.js")
133
+ module.exports.ServerIcon = require("./ServerIcon.js")
133
134
  module.exports.ShareIcon = require("./ShareIcon.js")
134
135
  module.exports.ShieldAlertIcon = require("./ShieldAlertIcon.js")
135
136
  module.exports.ShieldCheckIcon = require("./ShieldCheckIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const ServerIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default ServerIcon;
@@ -0,0 +1,22 @@
1
+ const React = require("react");
2
+ function ServerIcon({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }, svgRef) {
7
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ width: 24,
10
+ height: 24,
11
+ fill: "currentColor",
12
+ viewBox: "0 0 24 24",
13
+ ref: svgRef,
14
+ "aria-labelledby": titleId
15
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
16
+ id: titleId
17
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
18
+ d: "M16.5 13v9H3.75A1.75 1.75 0 0 1 2 20.25v-5.5c0-.966.784-1.75 1.75-1.75zm0-11v9H3.75A1.75 1.75 0 0 1 2 9.25v-5.5C2 2.784 2.784 2 3.75 2zm3.75 11c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 20.25 22H18v-9zm0-11c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 20.25 11H18V2z"
19
+ }));
20
+ }
21
+ const ForwardRef = React.forwardRef(ServerIcon);
22
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const ServerIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default ServerIcon;
@@ -0,0 +1,22 @@
1
+ import * as React from "react";
2
+ function ServerIcon({
3
+ title,
4
+ titleId,
5
+ ...props
6
+ }, svgRef) {
7
+ return /*#__PURE__*/React.createElement("svg", Object.assign({
8
+ xmlns: "http://www.w3.org/2000/svg",
9
+ width: 24,
10
+ height: 24,
11
+ fill: "currentColor",
12
+ viewBox: "0 0 24 24",
13
+ ref: svgRef,
14
+ "aria-labelledby": titleId
15
+ }, props), title ? /*#__PURE__*/React.createElement("title", {
16
+ id: titleId
17
+ }, title) : null, /*#__PURE__*/React.createElement("path", {
18
+ d: "M16.5 13v9H3.75A1.75 1.75 0 0 1 2 20.25v-5.5c0-.966.784-1.75 1.75-1.75zm0-11v9H3.75A1.75 1.75 0 0 1 2 9.25v-5.5C2 2.784 2.784 2 3.75 2zm3.75 11c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 20.25 22H18v-9zm0-11c.966 0 1.75.784 1.75 1.75v5.5A1.75 1.75 0 0 1 20.25 11H18V2z"
19
+ }));
20
+ }
21
+ const ForwardRef = React.forwardRef(ServerIcon);
22
+ export default ForwardRef;
@@ -130,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon'
130
130
  export { default as RowsIcon } from './RowsIcon'
131
131
  export { default as SearchIcon } from './SearchIcon'
132
132
  export { default as SendIcon } from './SendIcon'
133
+ export { default as ServerIcon } from './ServerIcon'
133
134
  export { default as ShareIcon } from './ShareIcon'
134
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon'
135
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon'
@@ -130,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon.js'
130
130
  export { default as RowsIcon } from './RowsIcon.js'
131
131
  export { default as SearchIcon } from './SearchIcon.js'
132
132
  export { default as SendIcon } from './SendIcon.js'
133
+ export { default as ServerIcon } from './ServerIcon.js'
133
134
  export { default as ShareIcon } from './ShareIcon.js'
134
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon.js'
135
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon.js'
@@ -130,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon'
130
130
  export { default as RowsIcon } from './RowsIcon'
131
131
  export { default as SearchIcon } from './SearchIcon'
132
132
  export { default as SendIcon } from './SendIcon'
133
+ export { default as ServerIcon } from './ServerIcon'
133
134
  export { default as ShareIcon } from './ShareIcon'
134
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon'
135
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon'
package/24/solid/index.js CHANGED
@@ -130,6 +130,7 @@ module.exports.RepeatIcon = require("./RepeatIcon.js")
130
130
  module.exports.RowsIcon = require("./RowsIcon.js")
131
131
  module.exports.SearchIcon = require("./SearchIcon.js")
132
132
  module.exports.SendIcon = require("./SendIcon.js")
133
+ module.exports.ServerIcon = require("./ServerIcon.js")
133
134
  module.exports.ShareIcon = require("./ShareIcon.js")
134
135
  module.exports.ShieldAlertIcon = require("./ShieldAlertIcon.js")
135
136
  module.exports.ShieldCheckIcon = require("./ShieldCheckIcon.js")
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "metal-icons",
3
3
  "license": "MIT",
4
- "version": "0.3.0",
4
+ "version": "0.4.0",
5
5
  "description": "A flexible React icon library.",
6
6
  "keywords": [
7
7
  "design",