@benefex/icons 0.2.0 → 0.2.1-PR17-BN518

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 ExclamationLight: ({ title, titleId, ...props }: SVGRProps) => React.JSX.Element;
4
+ export default ExclamationLight;
@@ -0,0 +1,5 @@
1
+ import * as React from 'react';
2
+ const ExclamationLight = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 128 512", "aria-labelledby": titleId, ...props },
3
+ title ? React.createElement("title", { id: titleId }, title) : null,
4
+ React.createElement("path", { fill: "currentColor", d: "M64 400c-17.67 0-32 14.32-32 31.99s14.33 32 32 32 32-14.33 32-32S81.67 400 64 400m0-48c8.844 0 16-7.166 16-16.01v-288C80 39.146 72.844 32 64 32s-16 7.16-16 16v288c0 8.8 7.16 16 16 16" })));
5
+ export default ExclamationLight;
package/dist/index.d.ts CHANGED
@@ -77,6 +77,7 @@ export { default as EllipsisLight } from './EllipsisLight';
77
77
  export { default as EllipsisVerticalLight } from './EllipsisVerticalLight';
78
78
  export { default as EllipsisVerticalRegular } from './EllipsisVerticalRegular';
79
79
  export { default as EnvelopeLight } from './EnvelopeLight';
80
+ export { default as ExclamationLight } from './ExclamationLight';
80
81
  export { default as EyeLight } from './EyeLight';
81
82
  export { default as EyeSlashLight } from './EyeSlashLight';
82
83
  export { default as EyeThin } from './EyeThin';
package/dist/index.js CHANGED
@@ -77,6 +77,7 @@ export { default as EllipsisLight } from './EllipsisLight';
77
77
  export { default as EllipsisVerticalLight } from './EllipsisVerticalLight';
78
78
  export { default as EllipsisVerticalRegular } from './EllipsisVerticalRegular';
79
79
  export { default as EnvelopeLight } from './EnvelopeLight';
80
+ export { default as ExclamationLight } from './ExclamationLight';
80
81
  export { default as EyeLight } from './EyeLight';
81
82
  export { default as EyeSlashLight } from './EyeSlashLight';
82
83
  export { default as EyeThin } from './EyeThin';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@benefex/icons",
3
- "version": "0.2.0",
3
+ "version": "0.2.1-PR17-BN518",
4
4
  "description": "Benefex icon package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",