metal-icons 0.2.15 → 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.
Files changed (49) hide show
  1. package/16/outline/GridPlusIcon.d.ts +3 -0
  2. package/16/outline/GridPlusIcon.js +25 -0
  3. package/16/outline/ServerIcon.d.ts +3 -0
  4. package/16/outline/ServerIcon.js +23 -0
  5. package/16/outline/esm/GridPlusIcon.d.ts +3 -0
  6. package/16/outline/esm/GridPlusIcon.js +25 -0
  7. package/16/outline/esm/ServerIcon.d.ts +3 -0
  8. package/16/outline/esm/ServerIcon.js +23 -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/GridPlusIcon.d.ts +3 -0
  14. package/16/solid/GridPlusIcon.js +25 -0
  15. package/16/solid/ServerIcon.d.ts +3 -0
  16. package/16/solid/ServerIcon.js +22 -0
  17. package/16/solid/esm/GridPlusIcon.d.ts +3 -0
  18. package/16/solid/esm/GridPlusIcon.js +25 -0
  19. package/16/solid/esm/ServerIcon.d.ts +3 -0
  20. package/16/solid/esm/ServerIcon.js +22 -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/GridPlusIcon.d.ts +3 -0
  26. package/24/outline/GridPlusIcon.js +25 -0
  27. package/24/outline/ServerIcon.d.ts +3 -0
  28. package/24/outline/ServerIcon.js +23 -0
  29. package/24/outline/esm/GridPlusIcon.d.ts +3 -0
  30. package/24/outline/esm/GridPlusIcon.js +25 -0
  31. package/24/outline/esm/ServerIcon.d.ts +3 -0
  32. package/24/outline/esm/ServerIcon.js +23 -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/GridPlusIcon.d.ts +3 -0
  38. package/24/solid/GridPlusIcon.js +25 -0
  39. package/24/solid/ServerIcon.d.ts +3 -0
  40. package/24/solid/ServerIcon.js +22 -0
  41. package/24/solid/esm/GridPlusIcon.d.ts +3 -0
  42. package/24/solid/esm/GridPlusIcon.js +25 -0
  43. package/24/solid/esm/ServerIcon.d.ts +3 -0
  44. package/24/solid/esm/ServerIcon.js +22 -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/package.json +1 -1
@@ -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 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 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;
@@ -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;
@@ -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'
@@ -129,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon'
129
130
  export { default as RowsIcon } from './RowsIcon'
130
131
  export { default as SearchIcon } from './SearchIcon'
131
132
  export { default as SendIcon } from './SendIcon'
133
+ export { default as ServerIcon } from './ServerIcon'
132
134
  export { default as ShareIcon } from './ShareIcon'
133
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon'
134
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon'
@@ -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'
@@ -129,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon.js'
129
130
  export { default as RowsIcon } from './RowsIcon.js'
130
131
  export { default as SearchIcon } from './SearchIcon.js'
131
132
  export { default as SendIcon } from './SendIcon.js'
133
+ export { default as ServerIcon } from './ServerIcon.js'
132
134
  export { default as ShareIcon } from './ShareIcon.js'
133
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon.js'
134
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon.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'
@@ -129,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon'
129
130
  export { default as RowsIcon } from './RowsIcon'
130
131
  export { default as SearchIcon } from './SearchIcon'
131
132
  export { default as SendIcon } from './SendIcon'
133
+ export { default as ServerIcon } from './ServerIcon'
132
134
  export { default as ShareIcon } from './ShareIcon'
133
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon'
134
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon'
@@ -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")
@@ -129,6 +130,7 @@ module.exports.RepeatIcon = require("./RepeatIcon.js")
129
130
  module.exports.RowsIcon = require("./RowsIcon.js")
130
131
  module.exports.SearchIcon = require("./SearchIcon.js")
131
132
  module.exports.SendIcon = require("./SendIcon.js")
133
+ module.exports.ServerIcon = require("./ServerIcon.js")
132
134
  module.exports.ShareIcon = require("./ShareIcon.js")
133
135
  module.exports.ShieldAlertIcon = require("./ShieldAlertIcon.js")
134
136
  module.exports.ShieldCheckIcon = require("./ShieldCheckIcon.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 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 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;
@@ -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;
@@ -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'
@@ -129,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon'
129
130
  export { default as RowsIcon } from './RowsIcon'
130
131
  export { default as SearchIcon } from './SearchIcon'
131
132
  export { default as SendIcon } from './SendIcon'
133
+ export { default as ServerIcon } from './ServerIcon'
132
134
  export { default as ShareIcon } from './ShareIcon'
133
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon'
134
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon'
@@ -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'
@@ -129,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon.js'
129
130
  export { default as RowsIcon } from './RowsIcon.js'
130
131
  export { default as SearchIcon } from './SearchIcon.js'
131
132
  export { default as SendIcon } from './SendIcon.js'
133
+ export { default as ServerIcon } from './ServerIcon.js'
132
134
  export { default as ShareIcon } from './ShareIcon.js'
133
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon.js'
134
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon.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'
@@ -129,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon'
129
130
  export { default as RowsIcon } from './RowsIcon'
130
131
  export { default as SearchIcon } from './SearchIcon'
131
132
  export { default as SendIcon } from './SendIcon'
133
+ export { default as ServerIcon } from './ServerIcon'
132
134
  export { default as ShareIcon } from './ShareIcon'
133
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon'
134
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon'
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")
@@ -129,6 +130,7 @@ module.exports.RepeatIcon = require("./RepeatIcon.js")
129
130
  module.exports.RowsIcon = require("./RowsIcon.js")
130
131
  module.exports.SearchIcon = require("./SearchIcon.js")
131
132
  module.exports.SendIcon = require("./SendIcon.js")
133
+ module.exports.ServerIcon = require("./ServerIcon.js")
132
134
  module.exports.ShareIcon = require("./ShareIcon.js")
133
135
  module.exports.ShieldAlertIcon = require("./ShieldAlertIcon.js")
134
136
  module.exports.ShieldCheckIcon = require("./ShieldCheckIcon.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 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 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;
@@ -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;
@@ -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'
@@ -129,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon'
129
130
  export { default as RowsIcon } from './RowsIcon'
130
131
  export { default as SearchIcon } from './SearchIcon'
131
132
  export { default as SendIcon } from './SendIcon'
133
+ export { default as ServerIcon } from './ServerIcon'
132
134
  export { default as ShareIcon } from './ShareIcon'
133
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon'
134
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon'
@@ -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'
@@ -129,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon.js'
129
130
  export { default as RowsIcon } from './RowsIcon.js'
130
131
  export { default as SearchIcon } from './SearchIcon.js'
131
132
  export { default as SendIcon } from './SendIcon.js'
133
+ export { default as ServerIcon } from './ServerIcon.js'
132
134
  export { default as ShareIcon } from './ShareIcon.js'
133
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon.js'
134
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon.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'
@@ -129,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon'
129
130
  export { default as RowsIcon } from './RowsIcon'
130
131
  export { default as SearchIcon } from './SearchIcon'
131
132
  export { default as SendIcon } from './SendIcon'
133
+ export { default as ServerIcon } from './ServerIcon'
132
134
  export { default as ShareIcon } from './ShareIcon'
133
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon'
134
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon'
@@ -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")
@@ -129,6 +130,7 @@ module.exports.RepeatIcon = require("./RepeatIcon.js")
129
130
  module.exports.RowsIcon = require("./RowsIcon.js")
130
131
  module.exports.SearchIcon = require("./SearchIcon.js")
131
132
  module.exports.SendIcon = require("./SendIcon.js")
133
+ module.exports.ServerIcon = require("./ServerIcon.js")
132
134
  module.exports.ShareIcon = require("./ShareIcon.js")
133
135
  module.exports.ShieldAlertIcon = require("./ShieldAlertIcon.js")
134
136
  module.exports.ShieldCheckIcon = require("./ShieldCheckIcon.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 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 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;
@@ -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;
@@ -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'
@@ -129,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon'
129
130
  export { default as RowsIcon } from './RowsIcon'
130
131
  export { default as SearchIcon } from './SearchIcon'
131
132
  export { default as SendIcon } from './SendIcon'
133
+ export { default as ServerIcon } from './ServerIcon'
132
134
  export { default as ShareIcon } from './ShareIcon'
133
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon'
134
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon'
@@ -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'
@@ -129,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon.js'
129
130
  export { default as RowsIcon } from './RowsIcon.js'
130
131
  export { default as SearchIcon } from './SearchIcon.js'
131
132
  export { default as SendIcon } from './SendIcon.js'
133
+ export { default as ServerIcon } from './ServerIcon.js'
132
134
  export { default as ShareIcon } from './ShareIcon.js'
133
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon.js'
134
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon.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'
@@ -129,6 +130,7 @@ export { default as RepeatIcon } from './RepeatIcon'
129
130
  export { default as RowsIcon } from './RowsIcon'
130
131
  export { default as SearchIcon } from './SearchIcon'
131
132
  export { default as SendIcon } from './SendIcon'
133
+ export { default as ServerIcon } from './ServerIcon'
132
134
  export { default as ShareIcon } from './ShareIcon'
133
135
  export { default as ShieldAlertIcon } from './ShieldAlertIcon'
134
136
  export { default as ShieldCheckIcon } from './ShieldCheckIcon'
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")
@@ -129,6 +130,7 @@ module.exports.RepeatIcon = require("./RepeatIcon.js")
129
130
  module.exports.RowsIcon = require("./RowsIcon.js")
130
131
  module.exports.SearchIcon = require("./SearchIcon.js")
131
132
  module.exports.SendIcon = require("./SendIcon.js")
133
+ module.exports.ServerIcon = require("./ServerIcon.js")
132
134
  module.exports.ShareIcon = require("./ShareIcon.js")
133
135
  module.exports.ShieldAlertIcon = require("./ShieldAlertIcon.js")
134
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.2.15",
4
+ "version": "0.4.0",
5
5
  "description": "A flexible React icon library.",
6
6
  "keywords": [
7
7
  "design",