8 lines
427 B
TypeScript
8 lines
427 B
TypeScript
import type { IconProps } from "../../lib/types.ts";
|
|
|
|
export const TrashIcon = ({ className }: IconProps) => (
|
|
<svg className={className} viewBox="0 0 12 12" fill="none" aria-hidden="true">
|
|
<path d="M1.5 3h9M4.5 3V2a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v1M5 5.5v3M7 5.5v3M2.5 3l.5 7a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 .5-.5l.5-7" stroke="currentColor" strokeWidth="1.3" strokeLinecap="round" strokeLinejoin="round" />
|
|
</svg>
|
|
);
|