Edit.tsx 484 B

12345678910111213141516171819202122
  1. import React from "react";
  2. function Edit() {
  3. return (
  4. <svg
  5. xmlns="http://www.w3.org/2000/svg"
  6. width="48"
  7. height="48"
  8. fill="none"
  9. stroke="#000"
  10. strokeLinecap="round"
  11. strokeLinejoin="round"
  12. strokeWidth="2"
  13. viewBox="0 0 24 24"
  14. >
  15. <path d="M20 14.66V20a2 2 0 01-2 2H4a2 2 0 01-2-2V6a2 2 0 012-2h5.34"></path>
  16. <path d="M18 2L22 6 12 16 8 16 8 12 18 2z"></path>
  17. </svg>
  18. );
  19. }
  20. export default React.memo(Edit);