@benefex/icons 0.0.7 → 0.0.8

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 CirclePlusThin: ({ title, titleId, ...props }: SVGRProps) => React.JSX.Element;
4
+ export default CirclePlusThin;
@@ -0,0 +1,5 @@
1
+ import * as React from 'react';
2
+ const CirclePlusThin = ({ 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: "M248 352v-88h-88c-4.4 0-8-3.6-8-8s3.6-8 8-8h88v-88c0-4.4 3.6-8 8-8s8 3.6 8 8v88h88c4.4 0 8 3.6 8 8s-3.6 8-8 8h-88v88c0 4.4-3.6 8-8 8s-8-3.6-8-8m264-96c0 141.4-114.6 256-256 256S0 397.4 0 256 114.6 0 256 0s256 114.6 256 256M256 16C123.5 16 16 123.5 16 256s107.5 240 240 240 240-107.5 240-240S388.5 16 256 16" })));
5
+ export default CirclePlusThin;
package/dist/index.d.ts CHANGED
@@ -50,6 +50,7 @@ export { default as CircleExclamationLight } from './CircleExclamationLight';
50
50
  export { default as CircleInfoLight } from './CircleInfoLight';
51
51
  export { default as CircleInfoThin } from './CircleInfoThin';
52
52
  export { default as CirclePlusLight } from './CirclePlusLight';
53
+ export { default as CirclePlusThin } from './CirclePlusThin';
53
54
  export { default as ClapperboardPlayLight } from './ClapperboardPlayLight';
54
55
  export { default as ClipboardLight } from './ClipboardLight';
55
56
  export { default as ClipboardThin } from './ClipboardThin';
package/dist/index.js CHANGED
@@ -50,6 +50,7 @@ export { default as CircleExclamationLight } from './CircleExclamationLight';
50
50
  export { default as CircleInfoLight } from './CircleInfoLight';
51
51
  export { default as CircleInfoThin } from './CircleInfoThin';
52
52
  export { default as CirclePlusLight } from './CirclePlusLight';
53
+ export { default as CirclePlusThin } from './CirclePlusThin';
53
54
  export { default as ClapperboardPlayLight } from './ClapperboardPlayLight';
54
55
  export { default as ClipboardLight } from './ClipboardLight';
55
56
  export { default as ClipboardThin } from './ClipboardThin';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@benefex/icons",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "Benefex icon package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",