metal-icons 0.2.14 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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/SparkleTextIcon.d.ts +3 -0
  4. package/16/outline/SparkleTextIcon.js +27 -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/SparkleTextIcon.d.ts +3 -0
  8. package/16/outline/esm/SparkleTextIcon.js +27 -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/SparkleTextIcon.d.ts +3 -0
  16. package/16/solid/SparkleTextIcon.js +23 -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/SparkleTextIcon.d.ts +3 -0
  20. package/16/solid/esm/SparkleTextIcon.js +23 -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/SparkleTextIcon.d.ts +3 -0
  28. package/24/outline/SparkleTextIcon.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/SparkleTextIcon.d.ts +3 -0
  32. package/24/outline/esm/SparkleTextIcon.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/SparkleTextIcon.d.ts +3 -0
  40. package/24/solid/SparkleTextIcon.js +23 -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/SparkleTextIcon.d.ts +3 -0
  44. package/24/solid/esm/SparkleTextIcon.js +23 -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 SparkleTextIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SparkleTextIcon;
@@ -0,0 +1,27 @@
1
+ const React = require("react");
2
+ function SparkleTextIcon({
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
+ d: "M1.75 1a.75.75 0 0 0 0 1.5h12.5a.75.75 0 1 0 0-1.5zm0 4a.75.75 0 0 0 0 1.5h12.5a.75.75 0 1 0 0-1.5zM1 9.75A.75.75 0 0 1 1.75 9h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 1 9.75M1.75 13a.75.75 0 1 0 0 1.5h4.5a.75.75 0 1 0 0-1.5z"
20
+ }), /*#__PURE__*/React.createElement("path", {
21
+ fill: "currentColor",
22
+ fillRule: "evenodd",
23
+ d: "M12.213 8.516a.75.75 0 0 0-1.426 0l-.56 1.708-1.711.563a.75.75 0 0 0 0 1.426l1.708.56.563 1.711a.75.75 0 0 0 1.426 0l.56-1.708 1.711-.563a.75.75 0 0 0 0-1.426l-1.708-.56zm-.912 2.78c.076-.076.144-.162.2-.254a1.36 1.36 0 0 0 .457.459 1.36 1.36 0 0 0-.459.457 1.36 1.36 0 0 0-.457-.459 1.36 1.36 0 0 0 .259-.203"
24
+ }));
25
+ }
26
+ const ForwardRef = React.forwardRef(SparkleTextIcon);
27
+ 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 SparkleTextIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SparkleTextIcon;
@@ -0,0 +1,27 @@
1
+ import * as React from "react";
2
+ function SparkleTextIcon({
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
+ d: "M1.75 1a.75.75 0 0 0 0 1.5h12.5a.75.75 0 1 0 0-1.5zm0 4a.75.75 0 0 0 0 1.5h12.5a.75.75 0 1 0 0-1.5zM1 9.75A.75.75 0 0 1 1.75 9h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 1 9.75M1.75 13a.75.75 0 1 0 0 1.5h4.5a.75.75 0 1 0 0-1.5z"
20
+ }), /*#__PURE__*/React.createElement("path", {
21
+ fill: "currentColor",
22
+ fillRule: "evenodd",
23
+ d: "M12.213 8.516a.75.75 0 0 0-1.426 0l-.56 1.708-1.711.563a.75.75 0 0 0 0 1.426l1.708.56.563 1.711a.75.75 0 0 0 1.426 0l.56-1.708 1.711-.563a.75.75 0 0 0 0-1.426l-1.708-.56zm-.912 2.78c.076-.076.144-.162.2-.254a1.36 1.36 0 0 0 .457.459 1.36 1.36 0 0 0-.459.457 1.36 1.36 0 0 0-.457-.459 1.36 1.36 0 0 0 .259-.203"
24
+ }));
25
+ }
26
+ const ForwardRef = React.forwardRef(SparkleTextIcon);
27
+ 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'
@@ -140,6 +141,7 @@ export { default as SidebarIcon } from './SidebarIcon'
140
141
  export { default as SlashIcon } from './SlashIcon'
141
142
  export { default as SliderIcon } from './SliderIcon'
142
143
  export { default as SmartphoneIcon } from './SmartphoneIcon'
144
+ export { default as SparkleTextIcon } from './SparkleTextIcon'
143
145
  export { default as SparklesIcon } from './SparklesIcon'
144
146
  export { default as StarIcon } from './StarIcon'
145
147
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon'
@@ -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'
@@ -140,6 +141,7 @@ export { default as SidebarIcon } from './SidebarIcon.js'
140
141
  export { default as SlashIcon } from './SlashIcon.js'
141
142
  export { default as SliderIcon } from './SliderIcon.js'
142
143
  export { default as SmartphoneIcon } from './SmartphoneIcon.js'
144
+ export { default as SparkleTextIcon } from './SparkleTextIcon.js'
143
145
  export { default as SparklesIcon } from './SparklesIcon.js'
144
146
  export { default as StarIcon } from './StarIcon.js'
145
147
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon.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'
@@ -140,6 +141,7 @@ export { default as SidebarIcon } from './SidebarIcon'
140
141
  export { default as SlashIcon } from './SlashIcon'
141
142
  export { default as SliderIcon } from './SliderIcon'
142
143
  export { default as SmartphoneIcon } from './SmartphoneIcon'
144
+ export { default as SparkleTextIcon } from './SparkleTextIcon'
143
145
  export { default as SparklesIcon } from './SparklesIcon'
144
146
  export { default as StarIcon } from './StarIcon'
145
147
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon'
@@ -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")
@@ -140,6 +141,7 @@ module.exports.SidebarIcon = require("./SidebarIcon.js")
140
141
  module.exports.SlashIcon = require("./SlashIcon.js")
141
142
  module.exports.SliderIcon = require("./SliderIcon.js")
142
143
  module.exports.SmartphoneIcon = require("./SmartphoneIcon.js")
144
+ module.exports.SparkleTextIcon = require("./SparkleTextIcon.js")
143
145
  module.exports.SparklesIcon = require("./SparklesIcon.js")
144
146
  module.exports.StarIcon = require("./StarIcon.js")
145
147
  module.exports.SwapHorizontalIcon = require("./SwapHorizontalIcon.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 SparkleTextIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SparkleTextIcon;
@@ -0,0 +1,23 @@
1
+ const React = require("react");
2
+ function SparkleTextIcon({
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
+ d: "M1.75 1a.75.75 0 0 0 0 1.5h12.5a.75.75 0 1 0 0-1.5zm0 4a.75.75 0 0 0 0 1.5h12.5a.75.75 0 1 0 0-1.5zM1 9.75A.75.75 0 0 1 1.75 9h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 1 9.75M1.75 13a.75.75 0 1 0 0 1.5h4.5a.75.75 0 1 0 0-1.5zm9.75-5a.75.75 0 0 1 .713.516l.563 1.712 1.707.56a.75.75 0 0 1 .001 1.425l-1.712.563-.56 1.707a.75.75 0 0 1-1.425.001l-.563-1.712-1.707-.56a.75.75 0 0 1-.001-1.425l1.712-.563.56-1.707a.75.75 0 0 1 .71-.517Z"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(SparkleTextIcon);
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 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 SparkleTextIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SparkleTextIcon;
@@ -0,0 +1,23 @@
1
+ import * as React from "react";
2
+ function SparkleTextIcon({
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
+ d: "M1.75 1a.75.75 0 0 0 0 1.5h12.5a.75.75 0 1 0 0-1.5zm0 4a.75.75 0 0 0 0 1.5h12.5a.75.75 0 1 0 0-1.5zM1 9.75A.75.75 0 0 1 1.75 9h4.5a.75.75 0 0 1 0 1.5h-4.5A.75.75 0 0 1 1 9.75M1.75 13a.75.75 0 1 0 0 1.5h4.5a.75.75 0 1 0 0-1.5zm9.75-5a.75.75 0 0 1 .713.516l.563 1.712 1.707.56a.75.75 0 0 1 .001 1.425l-1.712.563-.56 1.707a.75.75 0 0 1-1.425.001l-.563-1.712-1.707-.56a.75.75 0 0 1-.001-1.425l1.712-.563.56-1.707a.75.75 0 0 1 .71-.517Z"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(SparkleTextIcon);
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'
@@ -140,6 +141,7 @@ export { default as SidebarIcon } from './SidebarIcon'
140
141
  export { default as SlashIcon } from './SlashIcon'
141
142
  export { default as SliderIcon } from './SliderIcon'
142
143
  export { default as SmartphoneIcon } from './SmartphoneIcon'
144
+ export { default as SparkleTextIcon } from './SparkleTextIcon'
143
145
  export { default as SparklesIcon } from './SparklesIcon'
144
146
  export { default as StarIcon } from './StarIcon'
145
147
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon'
@@ -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'
@@ -140,6 +141,7 @@ export { default as SidebarIcon } from './SidebarIcon.js'
140
141
  export { default as SlashIcon } from './SlashIcon.js'
141
142
  export { default as SliderIcon } from './SliderIcon.js'
142
143
  export { default as SmartphoneIcon } from './SmartphoneIcon.js'
144
+ export { default as SparkleTextIcon } from './SparkleTextIcon.js'
143
145
  export { default as SparklesIcon } from './SparklesIcon.js'
144
146
  export { default as StarIcon } from './StarIcon.js'
145
147
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon.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'
@@ -140,6 +141,7 @@ export { default as SidebarIcon } from './SidebarIcon'
140
141
  export { default as SlashIcon } from './SlashIcon'
141
142
  export { default as SliderIcon } from './SliderIcon'
142
143
  export { default as SmartphoneIcon } from './SmartphoneIcon'
144
+ export { default as SparkleTextIcon } from './SparkleTextIcon'
143
145
  export { default as SparklesIcon } from './SparklesIcon'
144
146
  export { default as StarIcon } from './StarIcon'
145
147
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon'
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")
@@ -140,6 +141,7 @@ module.exports.SidebarIcon = require("./SidebarIcon.js")
140
141
  module.exports.SlashIcon = require("./SlashIcon.js")
141
142
  module.exports.SliderIcon = require("./SliderIcon.js")
142
143
  module.exports.SmartphoneIcon = require("./SmartphoneIcon.js")
144
+ module.exports.SparkleTextIcon = require("./SparkleTextIcon.js")
143
145
  module.exports.SparklesIcon = require("./SparklesIcon.js")
144
146
  module.exports.StarIcon = require("./StarIcon.js")
145
147
  module.exports.SwapHorizontalIcon = require("./SwapHorizontalIcon.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 SparkleTextIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SparkleTextIcon;
@@ -0,0 +1,23 @@
1
+ const React = require("react");
2
+ function SparkleTextIcon({
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
+ d: "M2.75 3a.75.75 0 0 0 0 1.5h18.5a.75.75 0 1 0 0-1.5zm0 5a.75.75 0 0 0 0 1.5h18.5a.75.75 0 1 0 0-1.5zM2 13.75a.75.75 0 0 1 .75-.75h7.5a.75.75 0 1 1 0 1.5h-7.5a.75.75 0 0 1-.75-.75M2.75 18a.75.75 0 1 0 0 1.5h7.5a.75.75 0 1 0 0-1.5zM17 11a.5.5 0 0 1 .475.344l.957 2.909a.5.5 0 0 0 .322.321l.002.001 2.9.95a.501.501 0 0 1 0 .95l-.35.114-2.559.843a.5.5 0 0 0-.321.322l-.001.002-.835 2.55-.59.193V21a.5.5 0 0 1-.444-.27l-.03-.074-.958-2.909a.5.5 0 0 0-.322-.321l-.002-.001-2.9-.95a.501.501 0 0 1 0-.95l2.909-.957a.502.502 0 0 0 .106-.05l.093-.072a.5.5 0 0 0 .073-.092l.05-.108v-.002l.95-2.9A.501.501 0 0 1 17 11m.476 9.655-.032.075A.5.5 0 0 1 17 21v-.501l.59-.193-.114.35Zm-.474-5.948a2.003 2.003 0 0 1-1.282 1.285v.001l-.015.005h.002c.226.073.436.186.622.332l.177.157.157.177a2 2 0 0 1 .33.615l.005.015.086-.222a2 2 0 0 1 .403-.578l.177-.157a2 2 0 0 1 .615-.33l.015-.005a2.006 2.006 0 0 1-1.29-1.287z"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(SparkleTextIcon);
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 SparkleTextIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SparkleTextIcon;
@@ -0,0 +1,23 @@
1
+ import * as React from "react";
2
+ function SparkleTextIcon({
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
+ d: "M2.75 3a.75.75 0 0 0 0 1.5h18.5a.75.75 0 1 0 0-1.5zm0 5a.75.75 0 0 0 0 1.5h18.5a.75.75 0 1 0 0-1.5zM2 13.75a.75.75 0 0 1 .75-.75h7.5a.75.75 0 1 1 0 1.5h-7.5a.75.75 0 0 1-.75-.75M2.75 18a.75.75 0 1 0 0 1.5h7.5a.75.75 0 1 0 0-1.5zM17 11a.5.5 0 0 1 .475.344l.957 2.909a.5.5 0 0 0 .322.321l.002.001 2.9.95a.501.501 0 0 1 0 .95l-.35.114-2.559.843a.5.5 0 0 0-.321.322l-.001.002-.835 2.55-.59.193V21a.5.5 0 0 1-.444-.27l-.03-.074-.958-2.909a.5.5 0 0 0-.322-.321l-.002-.001-2.9-.95a.501.501 0 0 1 0-.95l2.909-.957a.502.502 0 0 0 .106-.05l.093-.072a.5.5 0 0 0 .073-.092l.05-.108v-.002l.95-2.9A.501.501 0 0 1 17 11m.476 9.655-.032.075A.5.5 0 0 1 17 21v-.501l.59-.193-.114.35Zm-.474-5.948a2.003 2.003 0 0 1-1.282 1.285v.001l-.015.005h.002c.226.073.436.186.622.332l.177.157.157.177a2 2 0 0 1 .33.615l.005.015.086-.222a2 2 0 0 1 .403-.578l.177-.157a2 2 0 0 1 .615-.33l.015-.005a2.006 2.006 0 0 1-1.29-1.287z"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(SparkleTextIcon);
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'
@@ -140,6 +141,7 @@ export { default as SidebarIcon } from './SidebarIcon'
140
141
  export { default as SlashIcon } from './SlashIcon'
141
142
  export { default as SliderIcon } from './SliderIcon'
142
143
  export { default as SmartphoneIcon } from './SmartphoneIcon'
144
+ export { default as SparkleTextIcon } from './SparkleTextIcon'
143
145
  export { default as SparklesIcon } from './SparklesIcon'
144
146
  export { default as StarIcon } from './StarIcon'
145
147
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon'
@@ -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'
@@ -140,6 +141,7 @@ export { default as SidebarIcon } from './SidebarIcon.js'
140
141
  export { default as SlashIcon } from './SlashIcon.js'
141
142
  export { default as SliderIcon } from './SliderIcon.js'
142
143
  export { default as SmartphoneIcon } from './SmartphoneIcon.js'
144
+ export { default as SparkleTextIcon } from './SparkleTextIcon.js'
143
145
  export { default as SparklesIcon } from './SparklesIcon.js'
144
146
  export { default as StarIcon } from './StarIcon.js'
145
147
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon.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'
@@ -140,6 +141,7 @@ export { default as SidebarIcon } from './SidebarIcon'
140
141
  export { default as SlashIcon } from './SlashIcon'
141
142
  export { default as SliderIcon } from './SliderIcon'
142
143
  export { default as SmartphoneIcon } from './SmartphoneIcon'
144
+ export { default as SparkleTextIcon } from './SparkleTextIcon'
143
145
  export { default as SparklesIcon } from './SparklesIcon'
144
146
  export { default as StarIcon } from './StarIcon'
145
147
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon'
@@ -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")
@@ -140,6 +141,7 @@ module.exports.SidebarIcon = require("./SidebarIcon.js")
140
141
  module.exports.SlashIcon = require("./SlashIcon.js")
141
142
  module.exports.SliderIcon = require("./SliderIcon.js")
142
143
  module.exports.SmartphoneIcon = require("./SmartphoneIcon.js")
144
+ module.exports.SparkleTextIcon = require("./SparkleTextIcon.js")
143
145
  module.exports.SparklesIcon = require("./SparklesIcon.js")
144
146
  module.exports.StarIcon = require("./StarIcon.js")
145
147
  module.exports.SwapHorizontalIcon = require("./SwapHorizontalIcon.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 SparkleTextIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SparkleTextIcon;
@@ -0,0 +1,23 @@
1
+ const React = require("react");
2
+ function SparkleTextIcon({
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
+ d: "M2.75 3a.75.75 0 0 0 0 1.5h18.5a.75.75 0 1 0 0-1.5zm0 5a.75.75 0 0 0 0 1.5h18.5a.75.75 0 1 0 0-1.5zM2 13.75a.75.75 0 0 1 .75-.75h7.5a.75.75 0 1 1 0 1.5h-7.5a.75.75 0 0 1-.75-.75M2.75 18a.75.75 0 1 0 0 1.5h7.5a.75.75 0 1 0 0-1.5zM17 11a.5.5 0 0 1 .475.344l.957 2.909a.501.501 0 0 0 .322.321h.002l2.9.95a.5.5 0 0 1 0 .951l-2.909.957a.501.501 0 0 0-.321.322v.002l-.95 2.9a.5.5 0 0 1-.951 0l-.957-2.909a.501.501 0 0 0-.322-.321h-.002l-2.9-.95a.5.5 0 0 1 0-.951l2.909-.957a.501.501 0 0 0 .321-.322v-.002l.95-2.9A.5.5 0 0 1 17 11"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(SparkleTextIcon);
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 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 SparkleTextIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SparkleTextIcon;
@@ -0,0 +1,23 @@
1
+ import * as React from "react";
2
+ function SparkleTextIcon({
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
+ d: "M2.75 3a.75.75 0 0 0 0 1.5h18.5a.75.75 0 1 0 0-1.5zm0 5a.75.75 0 0 0 0 1.5h18.5a.75.75 0 1 0 0-1.5zM2 13.75a.75.75 0 0 1 .75-.75h7.5a.75.75 0 1 1 0 1.5h-7.5a.75.75 0 0 1-.75-.75M2.75 18a.75.75 0 1 0 0 1.5h7.5a.75.75 0 1 0 0-1.5zM17 11a.5.5 0 0 1 .475.344l.957 2.909a.501.501 0 0 0 .322.321h.002l2.9.95a.5.5 0 0 1 0 .951l-2.909.957a.501.501 0 0 0-.321.322v.002l-.95 2.9a.5.5 0 0 1-.951 0l-.957-2.909a.501.501 0 0 0-.322-.321h-.002l-2.9-.95a.5.5 0 0 1 0-.951l2.909-.957a.501.501 0 0 0 .321-.322v-.002l.95-2.9A.5.5 0 0 1 17 11"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(SparkleTextIcon);
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'
@@ -140,6 +141,7 @@ export { default as SidebarIcon } from './SidebarIcon'
140
141
  export { default as SlashIcon } from './SlashIcon'
141
142
  export { default as SliderIcon } from './SliderIcon'
142
143
  export { default as SmartphoneIcon } from './SmartphoneIcon'
144
+ export { default as SparkleTextIcon } from './SparkleTextIcon'
143
145
  export { default as SparklesIcon } from './SparklesIcon'
144
146
  export { default as StarIcon } from './StarIcon'
145
147
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon'
@@ -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'
@@ -140,6 +141,7 @@ export { default as SidebarIcon } from './SidebarIcon.js'
140
141
  export { default as SlashIcon } from './SlashIcon.js'
141
142
  export { default as SliderIcon } from './SliderIcon.js'
142
143
  export { default as SmartphoneIcon } from './SmartphoneIcon.js'
144
+ export { default as SparkleTextIcon } from './SparkleTextIcon.js'
143
145
  export { default as SparklesIcon } from './SparklesIcon.js'
144
146
  export { default as StarIcon } from './StarIcon.js'
145
147
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon.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'
@@ -140,6 +141,7 @@ export { default as SidebarIcon } from './SidebarIcon'
140
141
  export { default as SlashIcon } from './SlashIcon'
141
142
  export { default as SliderIcon } from './SliderIcon'
142
143
  export { default as SmartphoneIcon } from './SmartphoneIcon'
144
+ export { default as SparkleTextIcon } from './SparkleTextIcon'
143
145
  export { default as SparklesIcon } from './SparklesIcon'
144
146
  export { default as StarIcon } from './StarIcon'
145
147
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon'
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")
@@ -140,6 +141,7 @@ module.exports.SidebarIcon = require("./SidebarIcon.js")
140
141
  module.exports.SlashIcon = require("./SlashIcon.js")
141
142
  module.exports.SliderIcon = require("./SliderIcon.js")
142
143
  module.exports.SmartphoneIcon = require("./SmartphoneIcon.js")
144
+ module.exports.SparkleTextIcon = require("./SparkleTextIcon.js")
143
145
  module.exports.SparklesIcon = require("./SparklesIcon.js")
144
146
  module.exports.StarIcon = require("./StarIcon.js")
145
147
  module.exports.SwapHorizontalIcon = require("./SwapHorizontalIcon.js")
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "metal-icons",
3
3
  "license": "MIT",
4
- "version": "0.2.14",
4
+ "version": "0.3.0",
5
5
  "description": "A flexible React icon library.",
6
6
  "keywords": [
7
7
  "design",