@benefex/icons 0.2.1 → 0.2.2-PR18-BN543

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 BookOpenLight: ({ title, titleId, ...props }: SVGRProps) => React.JSX.Element;
4
+ export default BookOpenLight;
@@ -0,0 +1,5 @@
1
+ import * as React from 'react';
2
+ const BookOpenLight = ({ 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", { d: "M156 32c44.6 0 89.7 8.6 132 22.6 42.3-14 87.4-22.6 132-22.6 55.4 0 107.2 14.6 128.9 21.6C565.7 59 576 74.5 576 91.1v311.5c0 26.9-25.1 44.8-49 40.6-18.5-3.2-51.3-7.2-99-7.2-58.9 0-97.8 24.3-111.2 34.1-7.5 5.5-17.2 9.6-28.2 9.9h-1.2c-10.2 0-19.6-3.4-27-8.4C245.5 461.5 202 436 148 436c-45.2 0-80.1 4.4-100 7.7-24 4-48-14.1-48-40.2V91.1C0 74.5 10.3 59 27.1 53.6 48.8 46.6 100.6 32 156 32m148 408c20.3-13.5 63.1-36 124-36 49.5 0 84.1 4.2 104.4 7.6 2.5.4 5.7-.3 8.2-2.3 2.2-1.8 3.4-4 3.4-6.8V91c0-3.5-2.1-6.1-4.9-7-20.5-6.5-68.6-20-119.1-20-38.6 0-78.1 7.1-116 19zM272 83c-37.9-12-77.4-19-116-19-50.5 0-98.6 13.5-119.1 20-2.8.9-4.9 3.6-4.9 7v312.5c0 2.7 1.1 4.9 3.1 6.5 2.2 1.8 5.1 2.5 7.6 2.1 21.3-3.6 58-8.2 105.3-8.2 56.8 0 102.8 23.7 124 36.9z" })));
5
+ export default BookOpenLight;
package/dist/index.d.ts CHANGED
@@ -26,6 +26,7 @@ export { default as BarsLight } from './BarsLight';
26
26
  export { default as BellLight } from './BellLight';
27
27
  export { default as BellSolid } from './BellSolid';
28
28
  export { default as BlockQuoteLight } from './BlockQuoteLight';
29
+ export { default as BookOpenLight } from './BookOpenLight';
29
30
  export { default as BookOpenThin } from './BookOpenThin';
30
31
  export { default as BoxHeartLight } from './BoxHeartLight';
31
32
  export { default as BuildingLight } from './BuildingLight';
package/dist/index.js CHANGED
@@ -26,6 +26,7 @@ export { default as BarsLight } from './BarsLight';
26
26
  export { default as BellLight } from './BellLight';
27
27
  export { default as BellSolid } from './BellSolid';
28
28
  export { default as BlockQuoteLight } from './BlockQuoteLight';
29
+ export { default as BookOpenLight } from './BookOpenLight';
29
30
  export { default as BookOpenThin } from './BookOpenThin';
30
31
  export { default as BoxHeartLight } from './BoxHeartLight';
31
32
  export { default as BuildingLight } from './BuildingLight';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@benefex/icons",
3
- "version": "0.2.1",
3
+ "version": "0.2.2-PR18-BN543",
4
4
  "description": "Benefex icon package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",