trash.tsx 320 B

123456789101112
  1. export function TrashIcon() {
  2. return (
  3. <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
  4. <path
  5. d="M5 5L6 22H18L19 5M5 5H9M5 5H3M19 5H15M19 5H21M9 5L10 2H14L15 5M9 5H15"
  6. stroke="#394052"
  7. strokeLinecap="round"
  8. strokeLinejoin="round"
  9. />
  10. </svg>
  11. );
  12. }