@benefex/icons 0.11.0 → 0.12.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.
- package/dist/KeyLight.d.ts +4 -0
- package/dist/KeyLight.js +5 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/KeyLight.js
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const KeyLight = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 640 640", "aria-labelledby": titleId, ...props },
|
|
3
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
4
|
+
React.createElement("path", { fill: "currentColor", d: "M256 240c0-79.5 64.5-144 144-144s144 64.5 144 144-64.5 144-144 144c-11.1 0-22-1.3-32.4-3.6-5.4-1.2-11 .4-14.9 4.3L321.4 416H272c-8.8 0-16 7.2-16 16v48h-48c-8.8 0-16 7.2-16 16v48H96v-81.4l162.8-162.8c4.2-4.2 5.7-10.5 3.9-16.2-4.4-13.8-6.7-28.4-6.7-43.7zM400 64c-97.2 0-176 78.8-176 176 0 15.1 1.9 29.8 5.5 43.9L68.7 444.7c-3 3-4.7 7.1-4.7 11.3v104c0 8.8 7.2 16 16 16h128c8.8 0 16-7.2 16-16v-48h48c8.8 0 16-7.2 16-16v-48h40c4.2 0 8.3-1.7 11.3-4.7l30-30c10 1.8 20.2 2.7 30.7 2.7 97.2 0 176-78.8 176-176S497.2 64 400 64m32 168c13.3 0 24-10.7 24-24s-10.7-24-24-24-24 10.7-24 24 10.7 24 24 24" })));
|
|
5
|
+
export default KeyLight;
|
package/dist/index.d.ts
CHANGED
|
@@ -179,6 +179,7 @@ export { default as ImageRegular } from './ImageRegular';
|
|
|
179
179
|
export { default as ImageSolid } from './ImageSolid';
|
|
180
180
|
export { default as ImagesLight } from './ImagesLight';
|
|
181
181
|
export { default as ItalicRegular } from './ItalicRegular';
|
|
182
|
+
export { default as KeyLight } from './KeyLight';
|
|
182
183
|
export { default as LaptopMobileLight } from './LaptopMobileLight';
|
|
183
184
|
export { default as LinkLight } from './LinkLight';
|
|
184
185
|
export { default as LinkRegular } from './LinkRegular';
|
package/dist/index.js
CHANGED
|
@@ -179,6 +179,7 @@ export { default as ImageRegular } from './ImageRegular';
|
|
|
179
179
|
export { default as ImageSolid } from './ImageSolid';
|
|
180
180
|
export { default as ImagesLight } from './ImagesLight';
|
|
181
181
|
export { default as ItalicRegular } from './ItalicRegular';
|
|
182
|
+
export { default as KeyLight } from './KeyLight';
|
|
182
183
|
export { default as LaptopMobileLight } from './LaptopMobileLight';
|
|
183
184
|
export { default as LinkLight } from './LinkLight';
|
|
184
185
|
export { default as LinkRegular } from './LinkRegular';
|