@benefex/icons 0.2.8 → 0.2.9

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 EyeSlashThin: ({ title, titleId, ...props }: SVGRProps) => React.JSX.Element;
4
+ export default EyeSlashThin;
@@ -0,0 +1,5 @@
1
+ import * as React from 'react';
2
+ const EyeSlashThin = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 640 512", "aria-labelledby": titleId, ...props },
3
+ title ? React.createElement("title", { id: titleId }, title) : null,
4
+ React.createElement("path", { fill: "currentColor", d: "M636.1 497.7c4.3 2.8 4.9 7.8 2.2 10.4-2.8 4.3-7.8 4.9-11.3 2.2L3.022 14.26A7.996 7.996 0 0 1 1.738 3.022 8 8 0 0 1 12.98 1.738zm-30.6-229.4c-9.6 23-26 52.8-49 82.7l-13.4-9.9c22.9-28.7 38.6-58 47.7-78.9 1.6-4 1.6-8.4 0-12.4-14.1-34.7-44.2-83.8-89.1-125.5-45.1-41.89-106.1-77.2-182.6-77.2-41.2 0-78.8 11.59-111.7 28.3l-13.7-10.85C229.9 44.92 272.2 31.1 320 31.1c80.8 0 145.5 37.74 192.6 81.5 46.8 43.4 78.1 94.5 92.9 131.1 3.3 7.9 3.3 16.7 0 24.6M83.46 160.1l12.56 10.8C74 199.6 58.31 228 49.23 249.8c-1.64 4-1.64 8.4 0 12.4 14.11 33.8 44.15 82.9 89.07 125.5C183.4 429.6 244.4 464 320 464c42.1 0 79.7-10.7 112.6-27.4l13.7 10.9c-36.2 19.6-78.5 32.5-127.2 32.5-79.9 0-144.6-36.8-191.7-80.6-46.78-44.3-78.06-95.4-92.94-131.1a31.98 31.98 0 0 1 0-24.6c9.6-23 26-52.8 49-83.6M208 259.4l17.5 13.7c8.1 44 47.3 78.9 94.5 78.9 1.8 0 3.5-.9 5.2-.1l17.5 13.8c-7.3 1.5-14.9 2.3-22.7 2.3-60.7 0-110.2-48.3-112-108.6m111.1-116.3c61.6 0 111.1 49.2 112.8 109.5l-17.4-13.8c-8.1-44.8-47.3-79.7-95.4-79.7-.9 0-2.6.9-4.3 1l-17.5-13.8c7.3-1.5 14.9-3.2 21.8-3.2" })));
5
+ export default EyeSlashThin;
package/dist/index.d.ts CHANGED
@@ -90,6 +90,7 @@ export { default as EnvelopeRegular } from './EnvelopeRegular';
90
90
  export { default as ExclamationLight } from './ExclamationLight';
91
91
  export { default as EyeLight } from './EyeLight';
92
92
  export { default as EyeSlashLight } from './EyeSlashLight';
93
+ export { default as EyeSlashThin } from './EyeSlashThin';
93
94
  export { default as EyeThin } from './EyeThin';
94
95
  export { default as FaceDiagonalMouthLight } from './FaceDiagonalMouthLight';
95
96
  export { default as FaceFrownSlightLight } from './FaceFrownSlightLight';
package/dist/index.js CHANGED
@@ -90,6 +90,7 @@ export { default as EnvelopeRegular } from './EnvelopeRegular';
90
90
  export { default as ExclamationLight } from './ExclamationLight';
91
91
  export { default as EyeLight } from './EyeLight';
92
92
  export { default as EyeSlashLight } from './EyeSlashLight';
93
+ export { default as EyeSlashThin } from './EyeSlashThin';
93
94
  export { default as EyeThin } from './EyeThin';
94
95
  export { default as FaceDiagonalMouthLight } from './FaceDiagonalMouthLight';
95
96
  export { default as FaceFrownSlightLight } from './FaceFrownSlightLight';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@benefex/icons",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "description": "Benefex icon package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",