-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathicon-edit-file.tsx
More file actions
26 lines (23 loc) · 1.52 KB
/
Copy pathicon-edit-file.tsx
File metadata and controls
26 lines (23 loc) · 1.52 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 IconEditFile = 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="M190.897316 800.835662v-824.757598h329.110003l-10.912177-57.510981-9.897092-46.567083 46.598805 9.897091 111.025061 21.824355 9.897091 1.96673 6.946997 6.946996 313.24928 314.232645a94.085809 94.085809 0 0 1 0 132.849416A93.578266 93.578266 0 0 1 920.490576 387.473498a93.578266 93.578266 0 0 1-66.424709-27.756265l-28.73963-28.771352V591.664447l-8.913726 9.928812-190.328676 190.328677L616.155022 800.835662H190.897316z m63.442892-63.442892h317.214461v-190.328677h190.328676v-279.561104l-222.050122-221.035036-6.946997-6.946996H254.340208V737.39277z m380.657353-45.61544L716.299627 610.506986H634.997561V691.8090520000001z m285.493015-365.748273c7.45454 0 14.718751-3.838295 21.824354-10.943899 14.147765-14.147765 14.147765-29.437502 0-43.616988L634.997561-35.78575599999999l-54.529166-10.912178 10.912178 54.529166 305.318918 306.302283 1.998451 1.015086c7.073882 7.073882 14.338094 10.880456 21.792634 10.880456z" />
</g>
</svg>
);
});
IconEditFile.displayName = 'IconEditFile';
export { IconEditFile };