-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathicon-document.tsx
More file actions
26 lines (23 loc) · 847 Bytes
/
Copy pathicon-document.tsx
File metadata and controls
26 lines (23 loc) · 847 Bytes
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 IconDocument = 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-832h640V588.992l-8.992 10.016-192 192L620.992 800H192z m64-64h320v-192h192v-512H256V736z m384-46.016L722.016 608H640V690.016zM352 480v-64h320v64H352z m0-128v-64h320v64H352z m0-128v-64h320v64H352z" />
</g>
</svg>
);
});
IconDocument.displayName = 'IconDocument';
export { IconDocument };