@benefex/icons 0.2.6 → 0.2.7

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 PrintLight: ({ title, titleId, ...props }: SVGRProps) => React.JSX.Element;
4
+ export default PrintLight;
@@ -0,0 +1,5 @@
1
+ import * as React from 'react';
2
+ const PrintLight = ({ 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: "M416 320H96c-17.67 0-32 14.33-32 32v128c0 17.67 14.33 32 32 32h320c17.67 0 32-14.33 32-32V352c0-17.7-14.3-32-32-32m0 160H96V352h320zm32-288V70.63c0-8.49-3.4-16.63-9.4-22.63L399.97 9.37C393.1 3.37 385.9 0 377.4 0H128C92.65 0 64 28.65 64 64v128c-35.3 0-64 28.7-64 64v112c0 8.8 7.156 16 16 16s16-7.2 16-16V256c0-17.67 14.33-32 32-32h384c17.67 0 32 14.33 32 32v112c0 8.844 7.156 16 16 16s16-7.156 16-16V256c0-35.3-28.7-64-64-64m-32 0H96V64c0-17.67 14.33-32 32-32h249.4L416 70.63zm16 56c-13.25 0-24 10.74-24 24 0 13.25 10.75 24 24 24s24-10.75 24-24c0-13.3-10.7-24-24-24" })));
5
+ export default PrintLight;
package/dist/index.d.ts CHANGED
@@ -235,6 +235,7 @@ export { default as PiggyBankLight } from './PiggyBankLight';
235
235
  export { default as PlayLight } from './PlayLight';
236
236
  export { default as PlusLight } from './PlusLight';
237
237
  export { default as PlusThin } from './PlusThin';
238
+ export { default as PrintLight } from './PrintLight';
238
239
  export { default as PrintThin } from './PrintThin';
239
240
  export { default as QrcodeLight } from './QrcodeLight';
240
241
  export { default as QuestionLight } from './QuestionLight';
package/dist/index.js CHANGED
@@ -235,6 +235,7 @@ export { default as PiggyBankLight } from './PiggyBankLight';
235
235
  export { default as PlayLight } from './PlayLight';
236
236
  export { default as PlusLight } from './PlusLight';
237
237
  export { default as PlusThin } from './PlusThin';
238
+ export { default as PrintLight } from './PrintLight';
238
239
  export { default as PrintThin } from './PrintThin';
239
240
  export { default as QrcodeLight } from './QrcodeLight';
240
241
  export { default as QuestionLight } from './QuestionLight';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@benefex/icons",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "description": "Benefex icon package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",