@benefex/icons 0.3.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SVGRProps } from './svgr';
3
+ declare const SparklesSolid: ({ title, titleId, ...props }: SVGRProps) => React.JSX.Element;
4
+ export default SparklesSolid;
@@ -0,0 +1,5 @@
1
+ import * as React from 'react';
2
+ const SparklesSolid = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", "aria-labelledby": titleId, ...props },
3
+ title ? React.createElement("title", { id: titleId }, title) : null,
4
+ React.createElement("path", { fill: "currentColor", d: "M327.5 85.19 384 64l21.2-56.509C406.9 2.985 411.2 0 416 0s9.1 2.985 10.8 7.491L448 64l56.5 21.19c4.5 1.69 7.5 6 7.5 10.81 0 4.8-3 9.1-7.5 10.8L448 128l-21.2 56.5c-1.7 4.5-6 7.5-10.8 7.5s-9.1-3-10.8-7.5L384 128l-56.5-21.2c-5.4-1.7-7.5-6-7.5-10.8 0-4.81 2.1-9.12 7.5-10.81M257.8 187.3l114 52.7c5.7 2.6 9.3 8.3 9.3 14.6 0 6.2-3.6 11.9-9.3 14.5l-114 52.7-52.7 114c-2.6 5.7-8.3 9.3-14.5 9.3-6.3 0-12-3.6-14.6-9.3l-52.7-114L9.292 269.1C3.627 266.5 0 260.8 0 254.6c0-6.3 3.627-12 9.292-14.6L123.3 187.3 176 73.29c2.6-5.66 8.3-9.29 14.6-9.29 6.2 0 11.9 3.63 14.5 9.29zm147.4 140.2c1.7-5.4 6-7.5 10.8-7.5s9.1 2.1 10.8 7.5L448 384l56.5 21.2c4.5 1.7 7.5 6 7.5 10.8s-3 9.1-7.5 10.8L448 448l-21.2 56.5c-1.7 4.5-6 7.5-10.8 7.5s-9.1-3-10.8-7.5L384 448l-56.5-21.2c-5.4-1.7-7.5-6-7.5-10.8s2.1-9.1 7.5-10.8L384 384z" })));
5
+ export default SparklesSolid;
package/dist/index.d.ts CHANGED
@@ -270,6 +270,7 @@ export { default as SortLight } from './SortLight';
270
270
  export { default as SortUpLight } from './SortUpLight';
271
271
  export { default as SparklesLight } from './SparklesLight';
272
272
  export { default as SparklesRegular } from './SparklesRegular';
273
+ export { default as SparklesSolid } from './SparklesSolid';
273
274
  export { default as SpinnerThirdDuotoneSolid } from './SpinnerThirdDuotoneSolid';
274
275
  export { default as SpotifyBrands } from './SpotifyBrands';
275
276
  export { default as SquareArrowUpRightLight } from './SquareArrowUpRightLight';
package/dist/index.js CHANGED
@@ -270,6 +270,7 @@ export { default as SortLight } from './SortLight';
270
270
  export { default as SortUpLight } from './SortUpLight';
271
271
  export { default as SparklesLight } from './SparklesLight';
272
272
  export { default as SparklesRegular } from './SparklesRegular';
273
+ export { default as SparklesSolid } from './SparklesSolid';
273
274
  export { default as SpinnerThirdDuotoneSolid } from './SpinnerThirdDuotoneSolid';
274
275
  export { default as SpotifyBrands } from './SpotifyBrands';
275
276
  export { default as SquareArrowUpRightLight } from './SquareArrowUpRightLight';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@benefex/icons",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "Benefex icon package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",