@benefex/icons 0.2.13 → 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.
- package/dist/ArrowRightLight.d.ts +4 -0
- package/dist/ArrowRightLight.js +5 -0
- package/dist/SparklesSolid.d.ts +4 -0
- package/dist/SparklesSolid.js +5 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const ArrowRightLight = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 448 512", "aria-labelledby": titleId, ...props },
|
|
3
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
4
|
+
React.createElement("path", { fill: "currentColor", d: "m443.7 266.8-165.9 176c-3.3 3.5-8.7 5.2-12.3 5.2-3.986 0-7.988-1.375-11.16-4.156-6.773-5.938-7.275-16.06-1.118-22.59L393.9 272H16.59C7.419 272 0 264.845 0 256.9S7.421 240 16.59 240h377.3L253.19 90.7c-6.157-6.531-5.655-16.66 1.118-22.59 6.789-5.906 17.27-5.469 23.45 1.094l165.9 176a15.73 15.73 0 0 1 .042 21.596" })));
|
|
5
|
+
export default ArrowRightLight;
|
|
@@ -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
|
@@ -10,6 +10,7 @@ export { default as ArrowPointerRegular } from './ArrowPointerRegular';
|
|
|
10
10
|
export { default as ArrowPointerThin } from './ArrowPointerThin';
|
|
11
11
|
export { default as ArrowRightFromBracketLight } from './ArrowRightFromBracketLight';
|
|
12
12
|
export { default as ArrowRightFromBracketThin } from './ArrowRightFromBracketThin';
|
|
13
|
+
export { default as ArrowRightLight } from './ArrowRightLight';
|
|
13
14
|
export { default as ArrowRotateRightLight } from './ArrowRotateRightLight';
|
|
14
15
|
export { default as ArrowTrendUpLight } from './ArrowTrendUpLight';
|
|
15
16
|
export { default as ArrowUpRightAndArrowDownLeftFromCenterLight } from './ArrowUpRightAndArrowDownLeftFromCenterLight';
|
|
@@ -269,6 +270,7 @@ export { default as SortLight } from './SortLight';
|
|
|
269
270
|
export { default as SortUpLight } from './SortUpLight';
|
|
270
271
|
export { default as SparklesLight } from './SparklesLight';
|
|
271
272
|
export { default as SparklesRegular } from './SparklesRegular';
|
|
273
|
+
export { default as SparklesSolid } from './SparklesSolid';
|
|
272
274
|
export { default as SpinnerThirdDuotoneSolid } from './SpinnerThirdDuotoneSolid';
|
|
273
275
|
export { default as SpotifyBrands } from './SpotifyBrands';
|
|
274
276
|
export { default as SquareArrowUpRightLight } from './SquareArrowUpRightLight';
|
package/dist/index.js
CHANGED
|
@@ -10,6 +10,7 @@ export { default as ArrowPointerRegular } from './ArrowPointerRegular';
|
|
|
10
10
|
export { default as ArrowPointerThin } from './ArrowPointerThin';
|
|
11
11
|
export { default as ArrowRightFromBracketLight } from './ArrowRightFromBracketLight';
|
|
12
12
|
export { default as ArrowRightFromBracketThin } from './ArrowRightFromBracketThin';
|
|
13
|
+
export { default as ArrowRightLight } from './ArrowRightLight';
|
|
13
14
|
export { default as ArrowRotateRightLight } from './ArrowRotateRightLight';
|
|
14
15
|
export { default as ArrowTrendUpLight } from './ArrowTrendUpLight';
|
|
15
16
|
export { default as ArrowUpRightAndArrowDownLeftFromCenterLight } from './ArrowUpRightAndArrowDownLeftFromCenterLight';
|
|
@@ -269,6 +270,7 @@ export { default as SortLight } from './SortLight';
|
|
|
269
270
|
export { default as SortUpLight } from './SortUpLight';
|
|
270
271
|
export { default as SparklesLight } from './SparklesLight';
|
|
271
272
|
export { default as SparklesRegular } from './SparklesRegular';
|
|
273
|
+
export { default as SparklesSolid } from './SparklesSolid';
|
|
272
274
|
export { default as SpinnerThirdDuotoneSolid } from './SpinnerThirdDuotoneSolid';
|
|
273
275
|
export { default as SpotifyBrands } from './SpotifyBrands';
|
|
274
276
|
export { default as SquareArrowUpRightLight } from './SquareArrowUpRightLight';
|