@benefex/icons 0.5.0 → 0.5.1
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/PenSlashLight.d.ts +4 -0
- package/dist/PenSlashLight.js +5 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
const PenSlashLight = ({ title, titleId, ...props }) => (React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 640 512", "aria-labelledby": titleId, ...props },
|
|
3
|
+
title ? React.createElement("title", { id: titleId }, title) : null,
|
|
4
|
+
React.createElement("path", { fill: "currentColor", d: "M633.9 483.4c7 5.5 8.1 14.7 2.7 22.5-5.5 7-15.6 8.1-22.5 2.7L6.086 28.56C-.849 23.08-2.033 13.02 3.443 6.086 8.918-.849 18.98-2.033 25.91 3.443zM559 138.8 433.6 264.2l-25.2-20 49.7-50.6-75.7-76.6-59.6 59.7-25.3-20L437.2 16.97c21.9-21.867 57.3-21.867 79.2 0L559 59.6c21.9 21.87 21.9 57.3 0 79.2M405 94.4l76.6 75.7 54.8-53.9c9.4-9.4 9.4-24.6 0-33.97L493.8 39.6c-9.4-9.37-24.6-9.37-34 0zm-87.8 241 25.3 19.9-96.2 96.3a97.6 97.6 0 0 1-40.8 24.2L84.51 511.4c-5.61 1.6-11.68.1-15.82-4.1-4.14-4.1-6.59-10.2-4.04-15.8l35.55-121a97.6 97.6 0 0 1 24.2-40.8l82-81.9 25.2 20-84.5 84.6c-7.6 7.5-13.2 16.9-16.2 27.2l-27.3 92.8 92.8-27.3c10.3-3 19.7-8.6 27.2-16.2z" })));
|
|
5
|
+
export default PenSlashLight;
|
package/dist/index.d.ts
CHANGED
|
@@ -236,6 +236,7 @@ export { default as PartyHornLight } from './PartyHornLight';
|
|
|
236
236
|
export { default as PenLight } from './PenLight';
|
|
237
237
|
export { default as PenLineLight } from './PenLineLight';
|
|
238
238
|
export { default as PenLineThin } from './PenLineThin';
|
|
239
|
+
export { default as PenSlashLight } from './PenSlashLight';
|
|
239
240
|
export { default as PenThin } from './PenThin';
|
|
240
241
|
export { default as PenToSquareLight } from './PenToSquareLight';
|
|
241
242
|
export { default as PenToSquareRegular } from './PenToSquareRegular';
|
package/dist/index.js
CHANGED
|
@@ -236,6 +236,7 @@ export { default as PartyHornLight } from './PartyHornLight';
|
|
|
236
236
|
export { default as PenLight } from './PenLight';
|
|
237
237
|
export { default as PenLineLight } from './PenLineLight';
|
|
238
238
|
export { default as PenLineThin } from './PenLineThin';
|
|
239
|
+
export { default as PenSlashLight } from './PenSlashLight';
|
|
239
240
|
export { default as PenThin } from './PenThin';
|
|
240
241
|
export { default as PenToSquareLight } from './PenToSquareLight';
|
|
241
242
|
export { default as PenToSquareRegular } from './PenToSquareRegular';
|