Trash.tsx 604 B

12345678910111213141516171819202122232425
  1. import React from "react";
  2. function Trash() {
  3. return (
  4. <svg
  5. xmlns="http://www.w3.org/2000/svg"
  6. width="24"
  7. height="24"
  8. fill="none"
  9. stroke="currentColor"
  10. strokeLinecap="round"
  11. strokeLinejoin="round"
  12. strokeWidth="2"
  13. className="feather feather-trash-2"
  14. viewBox="0 0 24 24"
  15. >
  16. <path d="M3 6L5 6 21 6"></path>
  17. <path d="M19 6v14a2 2 0 01-2 2H7a2 2 0 01-2-2V6m3 0V4a2 2 0 012-2h4a2 2 0 012 2v2"></path>
  18. <path d="M10 11L10 17"></path>
  19. <path d="M14 11L14 17"></path>
  20. </svg>
  21. );
  22. }
  23. export default React.memo(Trash);