@benefex/icons 0.2.11 → 0.2.13
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 CartXmarkLight = ({ 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: "M0 16C0 7.2 7.2 0 16 0h37.9c22.8 0 42.5 16 47 38.4L145.4 256h321.1c14.7 0 27.5-10 31-24.2l47-187.7c2.1-8.6 10.8-13.8 19.4-11.6s13.8 10.8 11.6 19.4l-46.9 187.6c-7.1 28.5-32.7 48.5-62.1 48.5H152l7.9 38.4c3 14.9 16.1 25.6 31.4 25.6H496c8.8 0 16 7.2 16 16s-7.2 16-16 16H191.2c-30.4 0-56.6-21.4-62.7-51.2l-58.9-288C68 37.3 61.5 32 53.9 32H16C7.2 32 0 24.8 0 16m192 464a24 24 0 1 0 0-48 24 24 0 1 0 0 48m0-80a56 56 0 1 1 0 112 56 56 0 1 1 0-112m280 56a24 24 0 1 0-48 0 24 24 0 1 0 48 0m-80 0a56 56 0 1 1 112 0 56 56 0 1 1-112 0M379.3 91.3 342.6 128l36.7 36.7c6.2 6.2 6.2 16.4 0 22.6s-16.4 6.2-22.6 0L320 150.6l-36.7 36.7c-6.2 6.2-16.4 6.2-22.6 0s-6.2-16.4 0-22.6l36.7-36.7-36.7-36.7c-6.2-6.2-6.2-16.4 0-22.6s16.4-6.2 22.6 0l36.7 36.7 36.7-36.7c6.2-6.2 16.4-6.2 22.6 0s6.2 16.4 0 22.6" })));
|
|
5
|
+
export default CartXmarkLight;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const TruckRampBoxLight = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 640 512", "aria-labelledby": titleId, ...props },
|
|
3
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
4
|
+
React.createElement("path", { fill: "currentColor", d: "M624 0c8.8 0 16 7.164 16 16 0 8.84-7.2 16-16 16H432c-26.5 0-48 21.49-48 48v299.1l35.8-9.7.5-.1C433.6 322.4 476.8 288 528 288c61.9 0 112 50.1 112 112s-50.1 112-112 112c-60.7 0-110.1-48.2-111.9-108.4L20.21 511.4c-8.53 2.4-17.324-2.7-19.647-11.2s2.705-17.3 11.227-19.6l340.61-92.9c-.2-1.2-.4-2.4-.4-3.7V80c0-44.18 35.8-80 80-80zm-96 480c44.2 0 80-35.8 80-80s-35.8-80-80-80-80 35.8-80 80 35.8 80 80 80M200.3 127.1c17.1-4.6 34.6 5.6 39.2 22.6l41.4 154.6c4.6 17.1-5.6 34.6-22.6 39.2l-154.6 41.4c-17.06 4.6-34.6-5.6-39.18-22.6L23.11 207.7c-4.57-17.1 5.56-34.6 22.63-39.2zM84.93 191.2l-30.91 8.2 41.41 153.7 153.67-40.5L208.6 158l-30.9 8.3 14.5 54.1c3.4 12.8-5.1 26-17 29.4l-46.4 12.4c-12.8 3.4-25.9-4.2-29.38-17zm30.87-8.3 12.5 46.3 30.9-9.1-12.5-45.5z" })));
|
|
5
|
+
export default TruckRampBoxLight;
|
package/dist/index.d.ts
CHANGED
|
@@ -43,6 +43,7 @@ export { default as CalendarThin } from './CalendarThin';
|
|
|
43
43
|
export { default as CameraLight } from './CameraLight';
|
|
44
44
|
export { default as CameraSecurityLight } from './CameraSecurityLight';
|
|
45
45
|
export { default as CartShoppingRegular } from './CartShoppingRegular';
|
|
46
|
+
export { default as CartXmarkLight } from './CartXmarkLight';
|
|
46
47
|
export { default as ChartColumnThin } from './ChartColumnThin';
|
|
47
48
|
export { default as ChartMixedLight } from './ChartMixedLight';
|
|
48
49
|
export { default as ChartMixedSolid } from './ChartMixedSolid';
|
|
@@ -305,6 +306,7 @@ export { default as TrashThin } from './TrashThin';
|
|
|
305
306
|
export { default as TriangleExclamationLight } from './TriangleExclamationLight';
|
|
306
307
|
export { default as TriangleExclamationRegular } from './TriangleExclamationRegular';
|
|
307
308
|
export { default as TrophyStarLight } from './TrophyStarLight';
|
|
309
|
+
export { default as TruckRampBoxLight } from './TruckRampBoxLight';
|
|
308
310
|
export { default as TvRetroLight } from './TvRetroLight';
|
|
309
311
|
export { default as UploadThin } from './UploadThin';
|
|
310
312
|
export { default as UserCheckLight } from './UserCheckLight';
|
package/dist/index.js
CHANGED
|
@@ -43,6 +43,7 @@ export { default as CalendarThin } from './CalendarThin';
|
|
|
43
43
|
export { default as CameraLight } from './CameraLight';
|
|
44
44
|
export { default as CameraSecurityLight } from './CameraSecurityLight';
|
|
45
45
|
export { default as CartShoppingRegular } from './CartShoppingRegular';
|
|
46
|
+
export { default as CartXmarkLight } from './CartXmarkLight';
|
|
46
47
|
export { default as ChartColumnThin } from './ChartColumnThin';
|
|
47
48
|
export { default as ChartMixedLight } from './ChartMixedLight';
|
|
48
49
|
export { default as ChartMixedSolid } from './ChartMixedSolid';
|
|
@@ -305,6 +306,7 @@ export { default as TrashThin } from './TrashThin';
|
|
|
305
306
|
export { default as TriangleExclamationLight } from './TriangleExclamationLight';
|
|
306
307
|
export { default as TriangleExclamationRegular } from './TriangleExclamationRegular';
|
|
307
308
|
export { default as TrophyStarLight } from './TrophyStarLight';
|
|
309
|
+
export { default as TruckRampBoxLight } from './TruckRampBoxLight';
|
|
308
310
|
export { default as TvRetroLight } from './TvRetroLight';
|
|
309
311
|
export { default as UploadThin } from './UploadThin';
|
|
310
312
|
export { default as UserCheckLight } from './UserCheckLight';
|