@benefex/icons 0.0.5 → 0.0.6-PR8-BN214

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 ClockRotateLeftLight: ({ title, titleId, ...props }: SVGRProps) => React.JSX.Element;
4
+ export default ClockRotateLeftLight;
@@ -0,0 +1,5 @@
1
+ import * as React from 'react';
2
+ const ClockRotateLeftLight = ({ 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: "M32 132V48c0-8.8-7.2-16-16-16S0 39.2 0 48v128c0 8.8 7.2 16 16 16h128c8.8 0 16-7.2 16-16s-7.2-16-16-16H53.6C89.5 84.3 166.7 32 256 32c123.7 0 224 100.3 224 224S379.7 480 256 480c-73.3 0-138.3-35.2-179.2-89.6-5.3-7.1-15.3-8.5-22.4-3.2s-8.5 15.3-3.2 22.4C97.9 471.8 172.2 512 256 512c141.4 0 256-114.6 256-256S397.4 0 256 0C159.6 0 75.7 53.3 32 132m224-4c-8.8 0-16 7.2-16 16v112c0 4.2 1.7 8.3 4.7 11.3l80 80c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6L272 249.4V144c0-8.8-7.2-16-16-16" })));
5
+ export default ClockRotateLeftLight;
@@ -0,0 +1,4 @@
1
+ import * as React from 'react';
2
+ import { SVGRProps } from './svgr';
3
+ declare const ClockRotateLeftThin: ({ title, titleId, ...props }: SVGRProps) => React.JSX.Element;
4
+ export default ClockRotateLeftThin;
@@ -0,0 +1,5 @@
1
+ import * as React from 'react';
2
+ const ClockRotateLeftThin = ({ 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: "M16 166.7V56c0-4.4-3.6-8-8-8s-8 3.6-8 8v128c0 4.4 3.6 8 8 8h128c4.4 0 8-3.6 8-8s-3.6-8-8-8H29.7C62.6 82.8 151.5 16 256 16c132.5 0 240 107.5 240 240S388.5 496 256 496c-73.5 0-139.3-33.1-183.4-85.2-2.9-3.4-7.9-3.8-11.3-.9s-3.8 7.9-.9 11.3C107.3 476.7 177.6 512 256 512c141.4 0 256-114.6 256-256S397.4 0 256 0C146 0 52.2 69.4 16 166.7M256 128c-4.4 0-8 3.6-8 8v120c0 2.1.8 4.2 2.3 5.7l88 88c3.1 3.1 8.2 3.1 11.3 0s3.1-8.2 0-11.3L264 252.7V136c0-4.4-3.6-8-8-8" })));
5
+ export default ClockRotateLeftThin;
package/dist/index.d.ts CHANGED
@@ -54,6 +54,8 @@ export { default as ClapperboardPlayLight } from './ClapperboardPlayLight';
54
54
  export { default as ClipboardLight } from './ClipboardLight';
55
55
  export { default as ClipboardThin } from './ClipboardThin';
56
56
  export { default as ClockLight } from './ClockLight';
57
+ export { default as ClockRotateLeftLight } from './ClockRotateLeftLight';
58
+ export { default as ClockRotateLeftThin } from './ClockRotateLeftThin';
57
59
  export { default as ClockThin } from './ClockThin';
58
60
  export { default as CodeThin } from './CodeThin';
59
61
  export { default as Columns3Light } from './Columns3Light';
package/dist/index.js CHANGED
@@ -54,6 +54,8 @@ export { default as ClapperboardPlayLight } from './ClapperboardPlayLight';
54
54
  export { default as ClipboardLight } from './ClipboardLight';
55
55
  export { default as ClipboardThin } from './ClipboardThin';
56
56
  export { default as ClockLight } from './ClockLight';
57
+ export { default as ClockRotateLeftLight } from './ClockRotateLeftLight';
58
+ export { default as ClockRotateLeftThin } from './ClockRotateLeftThin';
57
59
  export { default as ClockThin } from './ClockThin';
58
60
  export { default as CodeThin } from './CodeThin';
59
61
  export { default as Columns3Light } from './Columns3Light';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@benefex/icons",
3
- "version": "0.0.5",
3
+ "version": "0.0.6-PR8-BN214",
4
4
  "description": "Benefex icon package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",