@benefex/icons 0.21.0 → 0.22.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.
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SVGRProps } from './svgr';
3
+ declare const BoxArchiveLight: ({ title, titleId, ...props }: SVGRProps) => React.JSX.Element;
4
+ export default BoxArchiveLight;
@@ -0,0 +1,5 @@
1
+ import * as React from 'react';
2
+ const BoxArchiveLight = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 512 512", "aria-labelledby": titleId, ...props },
3
+ title ? React.createElement("title", { id: titleId }, title) : null,
4
+ React.createElement("path", { fill: "currentColor", d: "M464 32H48C21.49 32 0 53.49 0 80v64c0 8.8 7.25 16 16 16h16v256c0 35.35 28.65 64 64 64h320c35.35 0 64-28.65 64-64V160h16c8.8 0 16-7.2 16-16V80c0-26.51-21.5-48-48-48m-16 384c0 17.6-14.4 32-32 32H96c-17.6 0-32-14.4-32-32V160h384zm32-288H32V80c0-8.75 7.25-16 16-16h416c8.8 0 16 7.25 16 16zM176 256h160c8.8 0 16-7.2 16-16s-7.2-16-16-16H176c-8.8 0-16 7.2-16 16s7.2 16 16 16" })));
5
+ export default BoxArchiveLight;
package/dist/index.d.ts CHANGED
@@ -38,6 +38,7 @@ export { default as BlockQuoteLight } from './BlockQuoteLight';
38
38
  export { default as BoldRegular } from './BoldRegular';
39
39
  export { default as BookOpenLight } from './BookOpenLight';
40
40
  export { default as BookOpenThin } from './BookOpenThin';
41
+ export { default as BoxArchiveLight } from './BoxArchiveLight';
41
42
  export { default as BoxHeartLight } from './BoxHeartLight';
42
43
  export { default as BrainLight } from './BrainLight';
43
44
  export { default as BrainRegular } from './BrainRegular';
package/dist/index.js CHANGED
@@ -38,6 +38,7 @@ export { default as BlockQuoteLight } from './BlockQuoteLight';
38
38
  export { default as BoldRegular } from './BoldRegular';
39
39
  export { default as BookOpenLight } from './BookOpenLight';
40
40
  export { default as BookOpenThin } from './BookOpenThin';
41
+ export { default as BoxArchiveLight } from './BoxArchiveLight';
41
42
  export { default as BoxHeartLight } from './BoxHeartLight';
42
43
  export { default as BrainLight } from './BrainLight';
43
44
  export { default as BrainRegular } from './BrainRegular';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@benefex/icons",
3
- "version": "0.21.0",
3
+ "version": "0.22.0",
4
4
  "description": "Benefex icon package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",