@benefex/icons 0.2.12 → 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,4 @@
1
+ import * as React from 'react';
2
+ import { SVGRProps } from './svgr';
3
+ declare const CartXmarkLight: ({ title, titleId, ...props }: SVGRProps) => React.JSX.Element;
4
+ export default CartXmarkLight;
@@ -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;
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';
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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@benefex/icons",
3
- "version": "0.2.12",
3
+ "version": "0.2.13",
4
4
  "description": "Benefex icon package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",