@benefex/icons 0.4.1 → 0.5.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/FileSlash.d.ts +4 -0
- package/dist/FileSlash.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 FileSlash = ({ 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: "M192 16h144v120c0 22.06 17.94 40 40 40h120v127.9l16 12.8V173.3a32.02 32.02 0 0 0-9.367-22.63l-141.3-141.3C355.4 3.371 347.2 0 338.8 0H192.1c-19.9 0-37.4 9.189-50 23.32l12.49 9.926C164.3 22.79 177.3 16 192 16m160 6.63L489.4 160H376c-13.2 0-24-10.8-24-24zM448 496H192c-26.47 0-48-21.53-48-48V208.1l-16-12.7.006 252.6c0 35.34 28.66 64 63.1 64H448c19.8 0 37.28-9.181 49.01-23.3l-12.49-9.926C475.7 489.2 462.7 496 448 496m191.1 8a8 8 0 0 0-3.019-6.27L12.99 1.771A7.95 7.95 0 0 0 8.027.041C3.781.041.002 3.419.002 8.031a8 8 0 0 0 3.019 6.27l623.1 495.1C628.5 511.4 630.2 512 631.1 512c5.1 0 8-3.4 8-8" })));
|
|
5
|
+
export default FileSlash;
|
package/dist/index.d.ts
CHANGED
|
@@ -118,6 +118,7 @@ export { default as FilePdfLight } from './FilePdfLight';
|
|
|
118
118
|
export { default as FilePdfRegular } from './FilePdfRegular';
|
|
119
119
|
export { default as FilePdfThin } from './FilePdfThin';
|
|
120
120
|
export { default as FilePlusLight } from './FilePlusLight';
|
|
121
|
+
export { default as FileSlash } from './FileSlash';
|
|
121
122
|
export { default as FileVideoThin } from './FileVideoThin';
|
|
122
123
|
export { default as FileXmarkLight } from './FileXmarkLight';
|
|
123
124
|
export { default as FilmRegular } from './FilmRegular';
|
package/dist/index.js
CHANGED
|
@@ -118,6 +118,7 @@ export { default as FilePdfLight } from './FilePdfLight';
|
|
|
118
118
|
export { default as FilePdfRegular } from './FilePdfRegular';
|
|
119
119
|
export { default as FilePdfThin } from './FilePdfThin';
|
|
120
120
|
export { default as FilePlusLight } from './FilePlusLight';
|
|
121
|
+
export { default as FileSlash } from './FileSlash';
|
|
121
122
|
export { default as FileVideoThin } from './FileVideoThin';
|
|
122
123
|
export { default as FileXmarkLight } from './FileXmarkLight';
|
|
123
124
|
export { default as FilmRegular } from './FilmRegular';
|