-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTrash.tsx
28 lines (28 loc) · 917 Bytes
/
Trash.tsx
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
27
28
/*
* Automatically generated by SVGR from assets/icons/*.svg.
* Do not edit this file or add other components to this directory.
*/
import type { SVGProps } from 'react'
export function TrashIcon(props: SVGProps<SVGSVGElement>): JSX.Element {
return (
<svg
xmlns='http://www.w3.org/2000/svg'
width='1em'
height='1em'
fill='none'
viewBox='0 0 24 24'
{...props}
>
<path
fill='currentColor'
d='M10 10a1 1 0 0 1 1 1v6a1 1 0 1 1-2 0v-6a1 1 0 0 1 1-1M15 17v-6a1 1 0 1 0-2 0v6a1 1 0 0 0 2 0'
/>
<path
fill='currentColor'
fillRule='evenodd'
d='M7 5V4a3 3 0 0 1 3-3h4a3 3 0 0 1 3 3v1h4a1 1 0 1 1 0 2h-1v13a3 3 0 0 1-3 3H7a3 3 0 0 1-3-3V7H3a1 1 0 0 1 0-2zm2.293-1.707A1 1 0 0 1 10 3h4a1 1 0 0 1 1 1v1H9V4a1 1 0 0 1 .293-.707M18 7v13a1 1 0 0 1-1 1H7a1 1 0 0 1-1-1V7z'
clipRule='evenodd'
/>
</svg>
)
}