@benefex/icons 0.5.1 → 0.6.0

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 ThumbsDownSolid: ({ title, titleId, ...props }: SVGRProps) => React.JSX.Element;
4
+ export default ThumbsDownSolid;
@@ -0,0 +1,5 @@
1
+ import * as React from 'react';
2
+ const ThumbsDownSolid = ({ 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: "M96 32.04H32c-17.67 0-32 14.32-32 31.1v223.1c0 17.67 14.33 31.1 32 31.1h64c17.67 0 32-14.33 32-31.1V64.03c0-17.67-14.3-31.99-32-31.99M467.3 240.2c7.8-8.5 12.7-19.8 12.7-32.3 0-23.47-16.87-42.92-39.14-47.09 4.44-7.21 7.14-15.71 7.14-25.71 0-21.32-14-39.18-33.25-45.43.75-2.55 1.25-6.06 1.25-9.69C416 53.47 394.5 32 368 32h-58.69c-34.61 0-68.28 11.22-95.97 31.98L179.2 89.57C167.1 98.63 160 112.9 160 127.1l.107 160s-.023-.023 0 0c.07 13.99 6.123 27.94 17.91 37.36l16.3 13.03C276.2 403.9 239.4 480 302.5 480c30.96 0 49.47-24.52 49.47-48.11 0-15.15-11.76-58.12-34.52-96.02H464c26.52 0 48-21.47 48-47.98 0-25.39-19.8-45.99-44.7-47.69" })));
5
+ export default ThumbsDownSolid;
package/dist/index.d.ts CHANGED
@@ -296,6 +296,7 @@ export { default as TableThin } from './TableThin';
296
296
  export { default as TextSizeLight } from './TextSizeLight';
297
297
  export { default as TextSlashRegular } from './TextSlashRegular';
298
298
  export { default as ThumbsDownLight } from './ThumbsDownLight';
299
+ export { default as ThumbsDownSolid } from './ThumbsDownSolid';
299
300
  export { default as ThumbsUpLight } from './ThumbsUpLight';
300
301
  export { default as ThumbsUpSolid } from './ThumbsUpSolid';
301
302
  export { default as ThumbsUpThin } from './ThumbsUpThin';
package/dist/index.js CHANGED
@@ -296,6 +296,7 @@ export { default as TableThin } from './TableThin';
296
296
  export { default as TextSizeLight } from './TextSizeLight';
297
297
  export { default as TextSlashRegular } from './TextSlashRegular';
298
298
  export { default as ThumbsDownLight } from './ThumbsDownLight';
299
+ export { default as ThumbsDownSolid } from './ThumbsDownSolid';
299
300
  export { default as ThumbsUpLight } from './ThumbsUpLight';
300
301
  export { default as ThumbsUpSolid } from './ThumbsUpSolid';
301
302
  export { default as ThumbsUpThin } from './ThumbsUpThin';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@benefex/icons",
3
- "version": "0.5.1",
3
+ "version": "0.6.0",
4
4
  "description": "Benefex icon package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",