@benefex/icons 0.9.0 → 0.10.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 PaletteLight: ({ title, titleId, ...props }: SVGRProps) => React.JSX.Element;
4
+ export default PaletteLight;
@@ -0,0 +1,5 @@
1
+ import * as React from 'react';
2
+ const PaletteLight = ({ 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: "M152 255.1c0 14.2-10.7 24-24 24s-24-9.8-24-24c0-12.4 10.7-24 24-24s24 11.6 24 24m-16-96c0-12.4 10.7-24 24-24s24 11.6 24 24c0 14.2-10.7 24-24 24s-24-9.8-24-24m144-32c0 14.2-10.7 24-24 24s-24-9.8-24-24c0-12.4 10.7-24 24-24s24 11.6 24 24m48 32c0-12.4 10.7-24 24-24s24 11.6 24 24c0 14.2-10.7 24-24 24s-24-9.8-24-24m113.9 160H344c-26.5 0-48 22.4-48 48.9 0 3.4.4 6.7 1 9.9 2.2 10.2 6.5 19.2 10.9 29.9 6 13.8 12.1 27.5 12.1 42 0 31.9-21.6 60.7-53.4 62-3.5.1-7.1.2-10.6.2C114.6 512 0 397.4 0 256S114.6 0 256 0s256 114.6 256 256c0 .9-.9 1.8-.9 2.7.5 36.5-32.7 61.3-69.2 61.3zm37.2-60.8c0-.7.9-1.5.9-3.2 0-122.8-100.3-224-224-224S32 132.3 32 255.1C32 379.7 132.3 480 256 480c3.1 0 6.2-.1 9.3-.2 10.4-.4 22.7-10.7 22.7-30 0-5.2-1.9-11.8-6.9-23.4-.7-1.5-1.4-3.1-3-4.8-3.5-9.7-9.5-23.3-12.4-37-1.1-5.4-1.7-11-1.7-16.6 0-44.2 35.8-80 80-80h97.9c24.3 0 37.9-15.6 37.2-29.7" })));
5
+ export default PaletteLight;
package/dist/index.d.ts CHANGED
@@ -238,6 +238,7 @@ export { default as OhRemoveFlagThin } from './OhRemoveFlagThin';
238
238
  export { default as OhRowMinusRegular } from './OhRowMinusRegular';
239
239
  export { default as OhRowPlusRegular } from './OhRowPlusRegular';
240
240
  export { default as PaintbrushLight } from './PaintbrushLight';
241
+ export { default as PaletteLight } from './PaletteLight';
241
242
  export { default as PaperPlaneTopLight } from './PaperPlaneTopLight';
242
243
  export { default as PaperPlaneTopRegular } from './PaperPlaneTopRegular';
243
244
  export { default as ParagraphLight } from './ParagraphLight';
package/dist/index.js CHANGED
@@ -238,6 +238,7 @@ export { default as OhRemoveFlagThin } from './OhRemoveFlagThin';
238
238
  export { default as OhRowMinusRegular } from './OhRowMinusRegular';
239
239
  export { default as OhRowPlusRegular } from './OhRowPlusRegular';
240
240
  export { default as PaintbrushLight } from './PaintbrushLight';
241
+ export { default as PaletteLight } from './PaletteLight';
241
242
  export { default as PaperPlaneTopLight } from './PaperPlaneTopLight';
242
243
  export { default as PaperPlaneTopRegular } from './PaperPlaneTopRegular';
243
244
  export { default as ParagraphLight } from './ParagraphLight';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@benefex/icons",
3
- "version": "0.9.0",
3
+ "version": "0.10.0",
4
4
  "description": "Benefex icon package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",