@benefex/icons 0.2.2 → 0.2.3-PR21-BN609

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 InfoLight: ({ title, titleId, ...props }: SVGRProps) => React.JSX.Element;
4
+ export default InfoLight;
@@ -0,0 +1,5 @@
1
+ import * as React from 'react';
2
+ const InfoLight = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 192 512", "aria-labelledby": titleId, ...props },
3
+ title ? React.createElement("title", { id: titleId }, title) : null,
4
+ React.createElement("path", { fill: "currentColor", d: "M96 96c17.67 0 32-14.33 32-32s-14.33-31.99-32-31.99S64 46.33 64 64s14.33 32 32 32m80 352h-64V176c0-8.8-7.2-16-16-16H48c-8.84 0-16 7.2-16 16s7.16 16 16 16h32v256H16c-8.844 0-16 7.2-16 16s7.156 16 16 16h160c8.844 0 16-7.156 16-16s-7.2-16-16-16" })));
5
+ export default InfoLight;
package/dist/index.d.ts CHANGED
@@ -144,6 +144,7 @@ export { default as ImageLight } from './ImageLight';
144
144
  export { default as ImageRegular } from './ImageRegular';
145
145
  export { default as ImageSolid } from './ImageSolid';
146
146
  export { default as ImagesLight } from './ImagesLight';
147
+ export { default as InfoLight } from './InfoLight';
147
148
  export { default as LaptopMobileLight } from './LaptopMobileLight';
148
149
  export { default as LinkLight } from './LinkLight';
149
150
  export { default as LinkSlashLight } from './LinkSlashLight';
package/dist/index.js CHANGED
@@ -144,6 +144,7 @@ export { default as ImageLight } from './ImageLight';
144
144
  export { default as ImageRegular } from './ImageRegular';
145
145
  export { default as ImageSolid } from './ImageSolid';
146
146
  export { default as ImagesLight } from './ImagesLight';
147
+ export { default as InfoLight } from './InfoLight';
147
148
  export { default as LaptopMobileLight } from './LaptopMobileLight';
148
149
  export { default as LinkLight } from './LinkLight';
149
150
  export { default as LinkSlashLight } from './LinkSlashLight';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@benefex/icons",
3
- "version": "0.2.2",
3
+ "version": "0.2.3-PR21-BN609",
4
4
  "description": "Benefex icon package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",