Copy.tsx 534 B

1234567891011121314151617181920212223
  1. import React from "react";
  2. function Copy() {
  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-copy"
  14. viewBox="0 0 24 24"
  15. >
  16. <rect width="13" height="13" x="9" y="9" rx="2" ry="2"></rect>
  17. <path d="M5 15H4a2 2 0 01-2-2V4a2 2 0 012-2h9a2 2 0 012 2v1"></path>
  18. </svg>
  19. );
  20. }
  21. export default React.memo(Copy);