@benefex/icons 0.8.0 → 0.9.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/CartShoppingLight.d.ts +4 -0
- package/dist/CartShoppingLight.js +5 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +3 -6
|
@@ -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
|
@@ -47,6 +47,7 @@ export { default as CalendarLight } from './CalendarLight';
|
|
|
47
47
|
export { default as CalendarThin } from './CalendarThin';
|
|
48
48
|
export { default as CameraLight } from './CameraLight';
|
|
49
49
|
export { default as CameraSecurityLight } from './CameraSecurityLight';
|
|
50
|
+
export { default as CartShoppingLight } from './CartShoppingLight';
|
|
50
51
|
export { default as CartShoppingRegular } from './CartShoppingRegular';
|
|
51
52
|
export { default as CartXmarkLight } from './CartXmarkLight';
|
|
52
53
|
export { default as ChartColumnThin } from './ChartColumnThin';
|
package/dist/index.js
CHANGED
|
@@ -47,6 +47,7 @@ export { default as CalendarLight } from './CalendarLight';
|
|
|
47
47
|
export { default as CalendarThin } from './CalendarThin';
|
|
48
48
|
export { default as CameraLight } from './CameraLight';
|
|
49
49
|
export { default as CameraSecurityLight } from './CameraSecurityLight';
|
|
50
|
+
export { default as CartShoppingLight } from './CartShoppingLight';
|
|
50
51
|
export { default as CartShoppingRegular } from './CartShoppingRegular';
|
|
51
52
|
export { default as CartXmarkLight } from './CartXmarkLight';
|
|
52
53
|
export { default as ChartColumnThin } from './ChartColumnThin';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@benefex/icons",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Benefex icon package",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -53,17 +53,14 @@
|
|
|
53
53
|
"@types/react": "^18.3.3",
|
|
54
54
|
"@types/react-dom": "^18.3.0",
|
|
55
55
|
"camelcase": "^8.0.0",
|
|
56
|
-
"husky": "^9.1.6",
|
|
57
56
|
"jest": "^29.7.0",
|
|
58
57
|
"react": "^18.3.1",
|
|
59
58
|
"react-dom": "^18.3.1",
|
|
60
59
|
"storybook": "^8.1.10",
|
|
61
|
-
"typescript": "^5.4.5"
|
|
60
|
+
"typescript": "^5.4.5",
|
|
61
|
+
"husky": "^9.1.6"
|
|
62
62
|
},
|
|
63
63
|
"peerDependencies": {
|
|
64
64
|
"react": "16 - 18"
|
|
65
|
-
},
|
|
66
|
-
"dependencies": {
|
|
67
|
-
"conventional-changelog-conventionalcommits": "^9.1.0"
|
|
68
65
|
}
|
|
69
66
|
}
|