metal-icons 0.2.2 → 0.2.3

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 SparklesIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SparklesIcon;
@@ -0,0 +1,23 @@
1
+ const React = require("react");
2
+ function SparklesIcon({
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: "M11.713 1.516a.75.75 0 0 0-1.426 0L9.605 3.6l-2.09.688a.75.75 0 0 0 .002 1.425l2.083.682.688 2.09a.75.75 0 0 0 1.425-.002l.682-2.083 2.09-.688a.75.75 0 0 0-.002-1.425L12.4 3.605l-.686-2.09Zm-1.045 3.147c.146-.146.26-.321.333-.514a1.471 1.471 0 0 0 .85.852 1.471 1.471 0 0 0-.852.85 1.471 1.471 0 0 0-.85-.852c.195-.074.372-.188.519-.336M5.212 8.516a.75.75 0 0 0-1.425 0l-.56 1.708-1.711.563a.75.75 0 0 0 0 1.426l1.708.56.564 1.711a.75.75 0 0 0 1.425 0l.56-1.708 1.711-.563a.75.75 0 0 0 0-1.426l-1.708-.56zm-.911 2.78c.077-.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"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(SparklesIcon);
23
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const SparklesIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SparklesIcon;
@@ -0,0 +1,23 @@
1
+ import * as React from "react";
2
+ function SparklesIcon({
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: "M11.713 1.516a.75.75 0 0 0-1.426 0L9.605 3.6l-2.09.688a.75.75 0 0 0 .002 1.425l2.083.682.688 2.09a.75.75 0 0 0 1.425-.002l.682-2.083 2.09-.688a.75.75 0 0 0-.002-1.425L12.4 3.605l-.686-2.09Zm-1.045 3.147c.146-.146.26-.321.333-.514a1.471 1.471 0 0 0 .85.852 1.471 1.471 0 0 0-.852.85 1.471 1.471 0 0 0-.85-.852c.195-.074.372-.188.519-.336M5.212 8.516a.75.75 0 0 0-1.425 0l-.56 1.708-1.711.563a.75.75 0 0 0 0 1.426l1.708.56.564 1.711a.75.75 0 0 0 1.425 0l.56-1.708 1.711-.563a.75.75 0 0 0 0-1.426l-1.708-.56zm-.911 2.78c.077-.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"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(SparklesIcon);
23
+ export default ForwardRef;
@@ -131,6 +131,7 @@ export { default as ShoppingCartIcon } from './ShoppingCartIcon'
131
131
  export { default as SlashIcon } from './SlashIcon'
132
132
  export { default as SliderIcon } from './SliderIcon'
133
133
  export { default as SmartphoneIcon } from './SmartphoneIcon'
134
+ export { default as SparklesIcon } from './SparklesIcon'
134
135
  export { default as StarIcon } from './StarIcon'
135
136
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon'
136
137
  export { default as SwapVerticalIcon } from './SwapVerticalIcon'
@@ -131,6 +131,7 @@ export { default as ShoppingCartIcon } from './ShoppingCartIcon.js'
131
131
  export { default as SlashIcon } from './SlashIcon.js'
132
132
  export { default as SliderIcon } from './SliderIcon.js'
133
133
  export { default as SmartphoneIcon } from './SmartphoneIcon.js'
134
+ export { default as SparklesIcon } from './SparklesIcon.js'
134
135
  export { default as StarIcon } from './StarIcon.js'
135
136
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon.js'
136
137
  export { default as SwapVerticalIcon } from './SwapVerticalIcon.js'
@@ -131,6 +131,7 @@ export { default as ShoppingCartIcon } from './ShoppingCartIcon'
131
131
  export { default as SlashIcon } from './SlashIcon'
132
132
  export { default as SliderIcon } from './SliderIcon'
133
133
  export { default as SmartphoneIcon } from './SmartphoneIcon'
134
+ export { default as SparklesIcon } from './SparklesIcon'
134
135
  export { default as StarIcon } from './StarIcon'
135
136
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon'
136
137
  export { default as SwapVerticalIcon } from './SwapVerticalIcon'
@@ -131,6 +131,7 @@ module.exports.ShoppingCartIcon = require("./ShoppingCartIcon.js")
131
131
  module.exports.SlashIcon = require("./SlashIcon.js")
132
132
  module.exports.SliderIcon = require("./SliderIcon.js")
133
133
  module.exports.SmartphoneIcon = require("./SmartphoneIcon.js")
134
+ module.exports.SparklesIcon = require("./SparklesIcon.js")
134
135
  module.exports.StarIcon = require("./StarIcon.js")
135
136
  module.exports.SwapHorizontalIcon = require("./SwapHorizontalIcon.js")
136
137
  module.exports.SwapVerticalIcon = require("./SwapVerticalIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const SparklesIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SparklesIcon;
@@ -0,0 +1,22 @@
1
+ const React = require("react");
2
+ function SparklesIcon({
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: "M11 1a.75.75 0 0 1 .713.516l.687 2.089 2.083.682a.75.75 0 0 1 .001 1.425l-2.089.688-.682 2.083a.75.75 0 0 1-1.425.001L9.6 6.395l-2.083-.682a.75.75 0 0 1-.001-1.425L9.605 3.6l.682-2.083A.75.75 0 0 1 11 1M4.5 8a.75.75 0 0 1 .712.516l.564 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.424.001l-.564-1.712-1.707-.56a.75.75 0 0 1-.001-1.425l1.712-.563.56-1.707A.75.75 0 0 1 4.5 8"
19
+ }));
20
+ }
21
+ const ForwardRef = React.forwardRef(SparklesIcon);
22
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const SparklesIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SparklesIcon;
@@ -0,0 +1,22 @@
1
+ import * as React from "react";
2
+ function SparklesIcon({
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: "M11 1a.75.75 0 0 1 .713.516l.687 2.089 2.083.682a.75.75 0 0 1 .001 1.425l-2.089.688-.682 2.083a.75.75 0 0 1-1.425.001L9.6 6.395l-2.083-.682a.75.75 0 0 1-.001-1.425L9.605 3.6l.682-2.083A.75.75 0 0 1 11 1M4.5 8a.75.75 0 0 1 .712.516l.564 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.424.001l-.564-1.712-1.707-.56a.75.75 0 0 1-.001-1.425l1.712-.563.56-1.707A.75.75 0 0 1 4.5 8"
19
+ }));
20
+ }
21
+ const ForwardRef = React.forwardRef(SparklesIcon);
22
+ export default ForwardRef;
@@ -131,6 +131,7 @@ export { default as ShoppingCartIcon } from './ShoppingCartIcon'
131
131
  export { default as SlashIcon } from './SlashIcon'
132
132
  export { default as SliderIcon } from './SliderIcon'
133
133
  export { default as SmartphoneIcon } from './SmartphoneIcon'
134
+ export { default as SparklesIcon } from './SparklesIcon'
134
135
  export { default as StarIcon } from './StarIcon'
135
136
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon'
136
137
  export { default as SwapVerticalIcon } from './SwapVerticalIcon'
@@ -131,6 +131,7 @@ export { default as ShoppingCartIcon } from './ShoppingCartIcon.js'
131
131
  export { default as SlashIcon } from './SlashIcon.js'
132
132
  export { default as SliderIcon } from './SliderIcon.js'
133
133
  export { default as SmartphoneIcon } from './SmartphoneIcon.js'
134
+ export { default as SparklesIcon } from './SparklesIcon.js'
134
135
  export { default as StarIcon } from './StarIcon.js'
135
136
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon.js'
136
137
  export { default as SwapVerticalIcon } from './SwapVerticalIcon.js'
@@ -131,6 +131,7 @@ export { default as ShoppingCartIcon } from './ShoppingCartIcon'
131
131
  export { default as SlashIcon } from './SlashIcon'
132
132
  export { default as SliderIcon } from './SliderIcon'
133
133
  export { default as SmartphoneIcon } from './SmartphoneIcon'
134
+ export { default as SparklesIcon } from './SparklesIcon'
134
135
  export { default as StarIcon } from './StarIcon'
135
136
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon'
136
137
  export { default as SwapVerticalIcon } from './SwapVerticalIcon'
package/16/solid/index.js CHANGED
@@ -131,6 +131,7 @@ module.exports.ShoppingCartIcon = require("./ShoppingCartIcon.js")
131
131
  module.exports.SlashIcon = require("./SlashIcon.js")
132
132
  module.exports.SliderIcon = require("./SliderIcon.js")
133
133
  module.exports.SmartphoneIcon = require("./SmartphoneIcon.js")
134
+ module.exports.SparklesIcon = require("./SparklesIcon.js")
134
135
  module.exports.StarIcon = require("./StarIcon.js")
135
136
  module.exports.SwapHorizontalIcon = require("./SwapHorizontalIcon.js")
136
137
  module.exports.SwapVerticalIcon = require("./SwapVerticalIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const SparklesIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SparklesIcon;
@@ -0,0 +1,23 @@
1
+ const React = require("react");
2
+ function SparklesIcon({
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: "M17.5 1a.75.75 0 0 1 .712.516l.798 2.425a.083.083 0 0 0 .054.054h.003l2.416.792a.75.75 0 0 1 .001 1.425l-2.425.798a.083.083 0 0 0-.054.054v.003l-.792 2.416a.75.75 0 0 1-1.425.001L15.99 7.06a.083.083 0 0 0-.054-.054h-.003l-2.416-.792a.75.75 0 0 1-.001-1.425l2.425-.798a.083.083 0 0 0 .054-.054v-.003l.792-2.416A.75.75 0 0 1 17.5 1m.001 3.155-.079.242V4.4a1.583 1.583 0 0 1-1.017 1.017l-.25.083.244.08a1.584 1.584 0 0 1 1.017 1.016l.083.25.079-.242V6.6a1.583 1.583 0 0 1 1.017-1.017l.25-.083-.242-.079H18.6a1.584 1.584 0 0 1-1.017-1.017l-.083-.25ZM9.5 5a.75.75 0 0 1 .713.516l1.435 4.363a.75.75 0 0 0 .482.482l.003.001 4.35 1.425a.75.75 0 0 1 .001 1.425l-4.363 1.436a.75.75 0 0 0-.482.482l-.001.003-1.425 4.35a.75.75 0 0 1-1.425.001l-1.436-4.363a.75.75 0 0 0-.483-.482l-.002-.001-4.35-1.425a.75.75 0 0 1-.001-1.425l4.363-1.436a.75.75 0 0 0 .482-.483l.001-.002 1.425-4.35A.75.75 0 0 1 9.5 5m0 3.155-.71 2.175v.001a2.25 2.25 0 0 1-1.446 1.447l-2.188.72 2.176.712h.001a2.25 2.25 0 0 1 1.447 1.446v.002l.72 2.186.712-2.175v-.002a2.25 2.25 0 0 1 1.446-1.447h.002l2.186-.72-2.176-.712h-.001a2.25 2.25 0 0 1-1.447-1.446l-.72-2.188Zm7.712 7.861a.75.75 0 0 0-1.425 0l-.62 1.896-1.901.626a.75.75 0 0 0 0 1.425l1.896.62.625 1.901a.75.75 0 0 0 1.426 0l.62-1.896 1.901-.626a.75.75 0 0 0 0-1.425l-1.896-.62zm-.978 2.964a1.39 1.39 0 0 0 .267-.371 1.418 1.418 0 0 0 .64.642 1.418 1.418 0 0 0-.642.64 1.418 1.418 0 0 0-.64-.642c.139-.068.265-.16.375-.27Z"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(SparklesIcon);
23
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const SparklesIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SparklesIcon;
@@ -0,0 +1,23 @@
1
+ import * as React from "react";
2
+ function SparklesIcon({
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: "M17.5 1a.75.75 0 0 1 .712.516l.798 2.425a.083.083 0 0 0 .054.054h.003l2.416.792a.75.75 0 0 1 .001 1.425l-2.425.798a.083.083 0 0 0-.054.054v.003l-.792 2.416a.75.75 0 0 1-1.425.001L15.99 7.06a.083.083 0 0 0-.054-.054h-.003l-2.416-.792a.75.75 0 0 1-.001-1.425l2.425-.798a.083.083 0 0 0 .054-.054v-.003l.792-2.416A.75.75 0 0 1 17.5 1m.001 3.155-.079.242V4.4a1.583 1.583 0 0 1-1.017 1.017l-.25.083.244.08a1.584 1.584 0 0 1 1.017 1.016l.083.25.079-.242V6.6a1.583 1.583 0 0 1 1.017-1.017l.25-.083-.242-.079H18.6a1.584 1.584 0 0 1-1.017-1.017l-.083-.25ZM9.5 5a.75.75 0 0 1 .713.516l1.435 4.363a.75.75 0 0 0 .482.482l.003.001 4.35 1.425a.75.75 0 0 1 .001 1.425l-4.363 1.436a.75.75 0 0 0-.482.482l-.001.003-1.425 4.35a.75.75 0 0 1-1.425.001l-1.436-4.363a.75.75 0 0 0-.483-.482l-.002-.001-4.35-1.425a.75.75 0 0 1-.001-1.425l4.363-1.436a.75.75 0 0 0 .482-.483l.001-.002 1.425-4.35A.75.75 0 0 1 9.5 5m0 3.155-.71 2.175v.001a2.25 2.25 0 0 1-1.446 1.447l-2.188.72 2.176.712h.001a2.25 2.25 0 0 1 1.447 1.446v.002l.72 2.186.712-2.175v-.002a2.25 2.25 0 0 1 1.446-1.447h.002l2.186-.72-2.176-.712h-.001a2.25 2.25 0 0 1-1.447-1.446l-.72-2.188Zm7.712 7.861a.75.75 0 0 0-1.425 0l-.62 1.896-1.901.626a.75.75 0 0 0 0 1.425l1.896.62.625 1.901a.75.75 0 0 0 1.426 0l.62-1.896 1.901-.626a.75.75 0 0 0 0-1.425l-1.896-.62zm-.978 2.964a1.39 1.39 0 0 0 .267-.371 1.418 1.418 0 0 0 .64.642 1.418 1.418 0 0 0-.642.64 1.418 1.418 0 0 0-.64-.642c.139-.068.265-.16.375-.27Z"
20
+ }));
21
+ }
22
+ const ForwardRef = React.forwardRef(SparklesIcon);
23
+ export default ForwardRef;
@@ -131,6 +131,7 @@ export { default as ShoppingCartIcon } from './ShoppingCartIcon'
131
131
  export { default as SlashIcon } from './SlashIcon'
132
132
  export { default as SliderIcon } from './SliderIcon'
133
133
  export { default as SmartphoneIcon } from './SmartphoneIcon'
134
+ export { default as SparklesIcon } from './SparklesIcon'
134
135
  export { default as StarIcon } from './StarIcon'
135
136
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon'
136
137
  export { default as SwapVerticalIcon } from './SwapVerticalIcon'
@@ -131,6 +131,7 @@ export { default as ShoppingCartIcon } from './ShoppingCartIcon.js'
131
131
  export { default as SlashIcon } from './SlashIcon.js'
132
132
  export { default as SliderIcon } from './SliderIcon.js'
133
133
  export { default as SmartphoneIcon } from './SmartphoneIcon.js'
134
+ export { default as SparklesIcon } from './SparklesIcon.js'
134
135
  export { default as StarIcon } from './StarIcon.js'
135
136
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon.js'
136
137
  export { default as SwapVerticalIcon } from './SwapVerticalIcon.js'
@@ -131,6 +131,7 @@ export { default as ShoppingCartIcon } from './ShoppingCartIcon'
131
131
  export { default as SlashIcon } from './SlashIcon'
132
132
  export { default as SliderIcon } from './SliderIcon'
133
133
  export { default as SmartphoneIcon } from './SmartphoneIcon'
134
+ export { default as SparklesIcon } from './SparklesIcon'
134
135
  export { default as StarIcon } from './StarIcon'
135
136
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon'
136
137
  export { default as SwapVerticalIcon } from './SwapVerticalIcon'
@@ -131,6 +131,7 @@ module.exports.ShoppingCartIcon = require("./ShoppingCartIcon.js")
131
131
  module.exports.SlashIcon = require("./SlashIcon.js")
132
132
  module.exports.SliderIcon = require("./SliderIcon.js")
133
133
  module.exports.SmartphoneIcon = require("./SmartphoneIcon.js")
134
+ module.exports.SparklesIcon = require("./SparklesIcon.js")
134
135
  module.exports.StarIcon = require("./StarIcon.js")
135
136
  module.exports.SwapHorizontalIcon = require("./SwapHorizontalIcon.js")
136
137
  module.exports.SwapVerticalIcon = require("./SwapVerticalIcon.js")
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const SparklesIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SparklesIcon;
@@ -0,0 +1,22 @@
1
+ const React = require("react");
2
+ function SparklesIcon({
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: "M17.5 1a.75.75 0 0 1 .712.516l.798 2.425a.083.083 0 0 0 .054.054h.003l2.416.792a.75.75 0 0 1 .001 1.425l-2.425.798a.083.083 0 0 0-.054.054v.003l-.792 2.416a.75.75 0 0 1-1.425.001L15.99 7.06a.083.083 0 0 0-.054-.054h-.003l-2.416-.792a.75.75 0 0 1-.001-1.425l2.425-.798a.083.083 0 0 0 .054-.054v-.003l.792-2.416A.75.75 0 0 1 17.5 1m-8 4a.75.75 0 0 1 .713.516l1.435 4.363a.75.75 0 0 0 .482.482l.003.001 4.35 1.425a.75.75 0 0 1 .001 1.425l-4.363 1.436a.75.75 0 0 0-.482.482l-.001.003-1.425 4.35a.75.75 0 0 1-1.425.001l-1.436-4.363a.75.75 0 0 0-.483-.482l-.002-.001-4.35-1.425a.75.75 0 0 1-.001-1.425l4.363-1.436a.75.75 0 0 0 .482-.483l.001-.002 1.425-4.35A.75.75 0 0 1 9.5 5m7.712 11.016a.75.75 0 0 0-1.425 0l-.62 1.896-1.901.626a.75.75 0 0 0 0 1.425l1.896.62.625 1.901a.75.75 0 0 0 1.426 0l.62-1.896 1.901-.626a.75.75 0 0 0 0-1.425l-1.896-.62z"
19
+ }));
20
+ }
21
+ const ForwardRef = React.forwardRef(SparklesIcon);
22
+ module.exports = ForwardRef;
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ declare const SparklesIcon: React.ForwardRefExoticComponent<React.PropsWithoutRef<React.SVGProps<SVGSVGElement>> & { title?: string, titleId?: string } & React.RefAttributes<SVGSVGElement>>;
3
+ export default SparklesIcon;
@@ -0,0 +1,22 @@
1
+ import * as React from "react";
2
+ function SparklesIcon({
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: "M17.5 1a.75.75 0 0 1 .712.516l.798 2.425a.083.083 0 0 0 .054.054h.003l2.416.792a.75.75 0 0 1 .001 1.425l-2.425.798a.083.083 0 0 0-.054.054v.003l-.792 2.416a.75.75 0 0 1-1.425.001L15.99 7.06a.083.083 0 0 0-.054-.054h-.003l-2.416-.792a.75.75 0 0 1-.001-1.425l2.425-.798a.083.083 0 0 0 .054-.054v-.003l.792-2.416A.75.75 0 0 1 17.5 1m-8 4a.75.75 0 0 1 .713.516l1.435 4.363a.75.75 0 0 0 .482.482l.003.001 4.35 1.425a.75.75 0 0 1 .001 1.425l-4.363 1.436a.75.75 0 0 0-.482.482l-.001.003-1.425 4.35a.75.75 0 0 1-1.425.001l-1.436-4.363a.75.75 0 0 0-.483-.482l-.002-.001-4.35-1.425a.75.75 0 0 1-.001-1.425l4.363-1.436a.75.75 0 0 0 .482-.483l.001-.002 1.425-4.35A.75.75 0 0 1 9.5 5m7.712 11.016a.75.75 0 0 0-1.425 0l-.62 1.896-1.901.626a.75.75 0 0 0 0 1.425l1.896.62.625 1.901a.75.75 0 0 0 1.426 0l.62-1.896 1.901-.626a.75.75 0 0 0 0-1.425l-1.896-.62z"
19
+ }));
20
+ }
21
+ const ForwardRef = React.forwardRef(SparklesIcon);
22
+ export default ForwardRef;
@@ -131,6 +131,7 @@ export { default as ShoppingCartIcon } from './ShoppingCartIcon'
131
131
  export { default as SlashIcon } from './SlashIcon'
132
132
  export { default as SliderIcon } from './SliderIcon'
133
133
  export { default as SmartphoneIcon } from './SmartphoneIcon'
134
+ export { default as SparklesIcon } from './SparklesIcon'
134
135
  export { default as StarIcon } from './StarIcon'
135
136
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon'
136
137
  export { default as SwapVerticalIcon } from './SwapVerticalIcon'
@@ -131,6 +131,7 @@ export { default as ShoppingCartIcon } from './ShoppingCartIcon.js'
131
131
  export { default as SlashIcon } from './SlashIcon.js'
132
132
  export { default as SliderIcon } from './SliderIcon.js'
133
133
  export { default as SmartphoneIcon } from './SmartphoneIcon.js'
134
+ export { default as SparklesIcon } from './SparklesIcon.js'
134
135
  export { default as StarIcon } from './StarIcon.js'
135
136
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon.js'
136
137
  export { default as SwapVerticalIcon } from './SwapVerticalIcon.js'
@@ -131,6 +131,7 @@ export { default as ShoppingCartIcon } from './ShoppingCartIcon'
131
131
  export { default as SlashIcon } from './SlashIcon'
132
132
  export { default as SliderIcon } from './SliderIcon'
133
133
  export { default as SmartphoneIcon } from './SmartphoneIcon'
134
+ export { default as SparklesIcon } from './SparklesIcon'
134
135
  export { default as StarIcon } from './StarIcon'
135
136
  export { default as SwapHorizontalIcon } from './SwapHorizontalIcon'
136
137
  export { default as SwapVerticalIcon } from './SwapVerticalIcon'
package/24/solid/index.js CHANGED
@@ -131,6 +131,7 @@ module.exports.ShoppingCartIcon = require("./ShoppingCartIcon.js")
131
131
  module.exports.SlashIcon = require("./SlashIcon.js")
132
132
  module.exports.SliderIcon = require("./SliderIcon.js")
133
133
  module.exports.SmartphoneIcon = require("./SmartphoneIcon.js")
134
+ module.exports.SparklesIcon = require("./SparklesIcon.js")
134
135
  module.exports.StarIcon = require("./StarIcon.js")
135
136
  module.exports.SwapHorizontalIcon = require("./SwapHorizontalIcon.js")
136
137
  module.exports.SwapVerticalIcon = require("./SwapVerticalIcon.js")
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "metal-icons",
3
3
  "license": "MIT",
4
- "version": "0.2.2",
4
+ "version": "0.2.3",
5
5
  "description": "A flexible React icon library.",
6
6
  "keywords": [
7
7
  "design",