@benefex/icons 0.2.3 → 0.2.4-PR23-BN700
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/ArrowPointerRegular.d.ts +4 -0
- package/dist/ArrowPointerRegular.js +5 -0
- package/dist/BasketShoppingRegular.d.ts +4 -0
- package/dist/BasketShoppingRegular.js +5 -0
- package/dist/CartShoppingRegular.d.ts +4 -0
- package/dist/CartShoppingRegular.js +5 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const ArrowPointerRegular = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 320 512", "aria-labelledby": titleId, ...props },
|
|
3
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
4
|
+
React.createElement("path", { fill: "currentColor", d: "M311.9 279.5 39.87 37.99C35.41 34.03 29.75 32 24.01 32c-3.34 0-6.7.69-9.89 2.11A24.01 24.01 0 0 0 0 56.02v370.3c0 10.12 6.281 19.18 15.72 22.67a23.906 23.906 0 0 0 26.561-7.026l83.48-98.81 58.25 123.1c5.697 12.04 20.01 17.15 31.98 11.42 11.97-5.731 17.06-20.14 11.36-32.18l-58.58-123.8h127.2c9.984 0 18.92-6.209 22.45-15.61 2.679-9.384.979-19.984-6.521-26.584m-190.2-6.1-73.69 87.23V109.6l184.5 163.8z" })));
|
|
5
|
+
export default ArrowPointerRegular;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const BasketShoppingRegular = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 576 512", "aria-labelledby": titleId, ...props },
|
|
3
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
4
|
+
React.createElement("path", { fill: "currentColor", d: "M224 392c0 13.3-10.7 24-24 24s-24-10.7-24-24v-80c0-13.3 10.7-24 24-24s24 10.7 24 24zm64-104c13.3 0 24 10.7 24 24v80c0 13.3-10.7 24-24 24s-24-10.7-24-24v-80c0-13.3 10.7-24 24-24m112 104c0 13.3-10.7 24-24 24s-24-10.7-24-24v-80c0-13.3 10.7-24 24-24s24 10.7 24 24zM243.1 2.708c11.7 6.115 16.3 20.602 10.2 32.362L171.7 192h232.6L322.7 35.07c-6.1-11.76-1.5-26.247 10.2-32.362 11.8-6.115 26.3-1.539 32.4 10.222L458.4 192H552c13.3 0 24 10.7 24 24s-10.7 24-24 24h-20l-55.9 223.5c-8 28.5-32.7 48.5-62.1 48.5H161.1c-28.5 0-54.1-20-61.22-48.5L44 240H24c-13.25 0-24-10.7-24-24s10.75-24 24-24h93.6l93.1-179.07c6.1-11.761 20.6-16.337 32.4-10.222M146.4 451.9c1.8 7.1 8.2 12.1 14.7 12.1H414c7.4 0 13.8-5 15.6-12.1L482.5 240H93.48z" })));
|
|
5
|
+
export default BasketShoppingRegular;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const CartShoppingRegular = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 576 512", "aria-labelledby": titleId, ...props },
|
|
3
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
4
|
+
React.createElement("path", { fill: "currentColor", d: "M96 0c11.5 0 21.4 8.19 23.6 19.51L121.1 32h420.7c20.3 0 36.5 20.25 30.8 40.66l-54 192.04c-3.9 13.8-16.5 23.3-30.8 23.3H170.7l9.2 48H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H159.1c-10.6 0-20.5-8.2-22.7-19.5L76.14 48H24C10.75 48 0 37.25 0 24S10.75 0 24 0zm379.6 240 45-160H131.1l30.5 160zM128 464c0-26.5 21.5-48 48-48s48 21.5 48 48-21.5 48-48 48-48-21.5-48-48m384 0c0 26.5-21.5 48-48 48s-48-21.5-48-48 21.5-48 48-48 48 21.5 48 48" })));
|
|
5
|
+
export default CartShoppingRegular;
|
package/dist/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ export { default as AngleRightLight } from './AngleRightLight';
|
|
|
6
6
|
export { default as AngleRightThin } from './AngleRightThin';
|
|
7
7
|
export { default as AngleUpLight } from './AngleUpLight';
|
|
8
8
|
export { default as ArrowLeftLight } from './ArrowLeftLight';
|
|
9
|
+
export { default as ArrowPointerRegular } from './ArrowPointerRegular';
|
|
9
10
|
export { default as ArrowPointerThin } from './ArrowPointerThin';
|
|
10
11
|
export { default as ArrowRightFromBracketLight } from './ArrowRightFromBracketLight';
|
|
11
12
|
export { default as ArrowRightFromBracketThin } from './ArrowRightFromBracketThin';
|
|
@@ -24,6 +25,7 @@ export { default as BanLight } from './BanLight';
|
|
|
24
25
|
export { default as BanThin } from './BanThin';
|
|
25
26
|
export { default as BarsFilterLight } from './BarsFilterLight';
|
|
26
27
|
export { default as BarsLight } from './BarsLight';
|
|
28
|
+
export { default as BasketShoppingRegular } from './BasketShoppingRegular';
|
|
27
29
|
export { default as BellLight } from './BellLight';
|
|
28
30
|
export { default as BellSolid } from './BellSolid';
|
|
29
31
|
export { default as BlockQuoteLight } from './BlockQuoteLight';
|
|
@@ -35,6 +37,7 @@ export { default as CalendarLight } from './CalendarLight';
|
|
|
35
37
|
export { default as CalendarThin } from './CalendarThin';
|
|
36
38
|
export { default as CameraLight } from './CameraLight';
|
|
37
39
|
export { default as CameraSecurityLight } from './CameraSecurityLight';
|
|
40
|
+
export { default as CartShoppingRegular } from './CartShoppingRegular';
|
|
38
41
|
export { default as ChartColumnThin } from './ChartColumnThin';
|
|
39
42
|
export { default as ChartMixedLight } from './ChartMixedLight';
|
|
40
43
|
export { default as ChartMixedSolid } from './ChartMixedSolid';
|
package/dist/index.js
CHANGED
|
@@ -6,6 +6,7 @@ export { default as AngleRightLight } from './AngleRightLight';
|
|
|
6
6
|
export { default as AngleRightThin } from './AngleRightThin';
|
|
7
7
|
export { default as AngleUpLight } from './AngleUpLight';
|
|
8
8
|
export { default as ArrowLeftLight } from './ArrowLeftLight';
|
|
9
|
+
export { default as ArrowPointerRegular } from './ArrowPointerRegular';
|
|
9
10
|
export { default as ArrowPointerThin } from './ArrowPointerThin';
|
|
10
11
|
export { default as ArrowRightFromBracketLight } from './ArrowRightFromBracketLight';
|
|
11
12
|
export { default as ArrowRightFromBracketThin } from './ArrowRightFromBracketThin';
|
|
@@ -24,6 +25,7 @@ export { default as BanLight } from './BanLight';
|
|
|
24
25
|
export { default as BanThin } from './BanThin';
|
|
25
26
|
export { default as BarsFilterLight } from './BarsFilterLight';
|
|
26
27
|
export { default as BarsLight } from './BarsLight';
|
|
28
|
+
export { default as BasketShoppingRegular } from './BasketShoppingRegular';
|
|
27
29
|
export { default as BellLight } from './BellLight';
|
|
28
30
|
export { default as BellSolid } from './BellSolid';
|
|
29
31
|
export { default as BlockQuoteLight } from './BlockQuoteLight';
|
|
@@ -35,6 +37,7 @@ export { default as CalendarLight } from './CalendarLight';
|
|
|
35
37
|
export { default as CalendarThin } from './CalendarThin';
|
|
36
38
|
export { default as CameraLight } from './CameraLight';
|
|
37
39
|
export { default as CameraSecurityLight } from './CameraSecurityLight';
|
|
40
|
+
export { default as CartShoppingRegular } from './CartShoppingRegular';
|
|
38
41
|
export { default as ChartColumnThin } from './ChartColumnThin';
|
|
39
42
|
export { default as ChartMixedLight } from './ChartMixedLight';
|
|
40
43
|
export { default as ChartMixedSolid } from './ChartMixedSolid';
|