@benefex/icons 0.2.11 → 0.2.12

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 TruckRampBoxLight: ({ title, titleId, ...props }: SVGRProps) => React.JSX.Element;
4
+ export default TruckRampBoxLight;
@@ -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
@@ -305,6 +305,7 @@ export { default as TrashThin } from './TrashThin';
305
305
  export { default as TriangleExclamationLight } from './TriangleExclamationLight';
306
306
  export { default as TriangleExclamationRegular } from './TriangleExclamationRegular';
307
307
  export { default as TrophyStarLight } from './TrophyStarLight';
308
+ export { default as TruckRampBoxLight } from './TruckRampBoxLight';
308
309
  export { default as TvRetroLight } from './TvRetroLight';
309
310
  export { default as UploadThin } from './UploadThin';
310
311
  export { default as UserCheckLight } from './UserCheckLight';
package/dist/index.js CHANGED
@@ -305,6 +305,7 @@ export { default as TrashThin } from './TrashThin';
305
305
  export { default as TriangleExclamationLight } from './TriangleExclamationLight';
306
306
  export { default as TriangleExclamationRegular } from './TriangleExclamationRegular';
307
307
  export { default as TrophyStarLight } from './TrophyStarLight';
308
+ export { default as TruckRampBoxLight } from './TruckRampBoxLight';
308
309
  export { default as TvRetroLight } from './TvRetroLight';
309
310
  export { default as UploadThin } from './UploadThin';
310
311
  export { default as UserCheckLight } from './UserCheckLight';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@benefex/icons",
3
- "version": "0.2.11",
3
+ "version": "0.2.12",
4
4
  "description": "Benefex icon package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",