@benefex/icons 0.2.3 → 0.2.4-PR23-BN687
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,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const BasketShoppingLight = ({ 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 400c0 8.8-7.2 16-16 16s-16-7.2-16-16v-96c0-8.8 7.2-16 16-16s16 7.2 16 16zm64-112c8.8 0 16 7.2 16 16v96c0 8.8-7.2 16-16 16s-16-7.2-16-16v-96c0-8.8 7.2-16 16-16m96 112c0 8.8-7.2 16-16 16s-16-7.2-16-16v-96c0-8.8 7.2-16 16-16s16 7.2 16 16zM349.8 7.943 457.2 192H560c8.8 0 16 7.2 16 16s-7.2 16-16 16h-24l-59.9 239.5c-8 28.5-32.7 48.5-62.1 48.5H161.1c-28.5 0-54.1-20-61.22-48.5L40 224H16c-8.836 0-16-7.2-16-16s7.164-16 16-16h102.8L226.2 7.943c4.4-7.633 14.2-10.211 21.9-5.759 7.6 4.453 10.2 14.246 5.7 21.886L155.9 192h264.2L322.2 24.07c-4.5-7.64-1.9-17.433 5.7-21.886 7.7-4.452 17.5-1.874 21.9 5.759M130.9 455.8c3.6 14.2 16.4 24.2 30.2 24.2H414c14.7 0 27.5-10 31.1-24.2L503 224H72.98z" })));
|
|
5
|
+
export default BasketShoppingLight;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const CartShoppingLight = ({ 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: "M80 0c7.47 0 13.95 5.17 15.6 12.45L100 32h441.8c20.3 0 36.5 20.25 30.8 40.66l-54 192.04c-3.9 13.8-16.5 23.3-30.8 23.3H158.2l14.6 64H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H160c-7.5 0-13.9-5.2-15.6-12.5L67.23 32H16C7.164 32 0 24.84 0 16 0 7.164 7.164 0 16 0zm27.3 64 42.8 192h337.7l54-192zM128 456c0-30.9 25.1-56 56-56s56 25.1 56 56-25.1 56-56 56-56-25.1-56-56m56 24c13.3 0 24-10.7 24-24s-10.7-24-24-24-24 10.7-24 24 10.7 24 24 24m328-24c0 30.9-25.1 56-56 56s-56-25.1-56-56 25.1-56 56-56 56 25.1 56 56m-56-24c-13.3 0-24 10.7-24 24s10.7 24 24 24 24-10.7 24-24-10.7-24-24-24" })));
|
|
5
|
+
export default CartShoppingLight;
|
package/dist/index.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ export { default as BanLight } from './BanLight';
|
|
|
24
24
|
export { default as BanThin } from './BanThin';
|
|
25
25
|
export { default as BarsFilterLight } from './BarsFilterLight';
|
|
26
26
|
export { default as BarsLight } from './BarsLight';
|
|
27
|
+
export { default as BasketShoppingLight } from './BasketShoppingLight';
|
|
27
28
|
export { default as BellLight } from './BellLight';
|
|
28
29
|
export { default as BellSolid } from './BellSolid';
|
|
29
30
|
export { default as BlockQuoteLight } from './BlockQuoteLight';
|
|
@@ -35,6 +36,7 @@ export { default as CalendarLight } from './CalendarLight';
|
|
|
35
36
|
export { default as CalendarThin } from './CalendarThin';
|
|
36
37
|
export { default as CameraLight } from './CameraLight';
|
|
37
38
|
export { default as CameraSecurityLight } from './CameraSecurityLight';
|
|
39
|
+
export { default as CartShoppingLight } from './CartShoppingLight';
|
|
38
40
|
export { default as ChartColumnThin } from './ChartColumnThin';
|
|
39
41
|
export { default as ChartMixedLight } from './ChartMixedLight';
|
|
40
42
|
export { default as ChartMixedSolid } from './ChartMixedSolid';
|
package/dist/index.js
CHANGED
|
@@ -24,6 +24,7 @@ export { default as BanLight } from './BanLight';
|
|
|
24
24
|
export { default as BanThin } from './BanThin';
|
|
25
25
|
export { default as BarsFilterLight } from './BarsFilterLight';
|
|
26
26
|
export { default as BarsLight } from './BarsLight';
|
|
27
|
+
export { default as BasketShoppingLight } from './BasketShoppingLight';
|
|
27
28
|
export { default as BellLight } from './BellLight';
|
|
28
29
|
export { default as BellSolid } from './BellSolid';
|
|
29
30
|
export { default as BlockQuoteLight } from './BlockQuoteLight';
|
|
@@ -35,6 +36,7 @@ export { default as CalendarLight } from './CalendarLight';
|
|
|
35
36
|
export { default as CalendarThin } from './CalendarThin';
|
|
36
37
|
export { default as CameraLight } from './CameraLight';
|
|
37
38
|
export { default as CameraSecurityLight } from './CameraSecurityLight';
|
|
39
|
+
export { default as CartShoppingLight } from './CartShoppingLight';
|
|
38
40
|
export { default as ChartColumnThin } from './ChartColumnThin';
|
|
39
41
|
export { default as ChartMixedLight } from './ChartMixedLight';
|
|
40
42
|
export { default as ChartMixedSolid } from './ChartMixedSolid';
|