22 lines
532 B
TypeScript
22 lines
532 B
TypeScript
type Props = {
|
|
className: string
|
|
}
|
|
|
|
export const Trash: React.FC<Props> = ({ className }) => {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
viewBox="0 0 24 24"
|
|
className={className}>
|
|
<path d="M3 6h18M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2"></path>
|
|
<path d="M10 11L10 17"></path>
|
|
<path d="M14 11L14 17"></path>
|
|
</svg>
|
|
)
|
|
}
|