-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathicon-delete-file.tsx
More file actions
26 lines (23 loc) · 1.23 KB
/
Copy pathicon-delete-file.tsx
File metadata and controls
26 lines (23 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { forwardRef } from 'react';
import type { IconProps } from './types';
const IconDeleteFile = forwardRef<SVGSVGElement, IconProps>((props, ref) => {
const { size = '1em', color = 'currentColor', className, style, ...rest } = props;
return (
<svg
ref={ref}
viewBox="0 0 1024 1024"
width={size}
height={size}
fill={color}
className={className}
style={{ verticalAlign: "middle", ...style }}
{...rest}
>
<g transform="translate(0, 896) scale(1, -1)">
<path d="M192 800v-832h376.992c47.008-58.496 118.4-96 199.008-96 140.992 0 256 115.008 256 256 0 118.752-82.016 218.304-192 247.008V588.992l-8.992 10.016-192 192L620.992 800H192z m64-64h320v-192h192v-160c-140.992 0-256-115.008-256-256 0-34.112 6.816-66.208 19.008-96H256V736z m384-46.016L722.016 608H640V690.016zM768 320c106.432 0 192-85.568 192-192s-85.568-192-192-192-192 85.568-192 192 85.568 192 192 192z m-72.992-72.992L648.96 200.96000000000004 722.016 128l-73.024-72.992 46.016-46.016L768 82.01599999999996l72.992-73.024 46.016 46.016L813.984 128l73.024 72.992-46.016 46.016L768 173.98400000000004l-72.992 73.024z" />
</g>
</svg>
);
});
IconDeleteFile.displayName = 'IconDeleteFile';
export { IconDeleteFile };