Clipboard.tsx 567 B

1234567891011121314151617181920212223
  1. import React from "react";
  2. function Clipboard() {
  3. return (
  4. <svg
  5. xmlns="http://www.w3.org/2000/svg"
  6. width="auto"
  7. height="auto"
  8. fill="none"
  9. stroke="currentColor"
  10. strokeLinecap="round"
  11. strokeLinejoin="round"
  12. strokeWidth="2"
  13. className="feather feather-clipboard"
  14. viewBox="0 0 24 24"
  15. >
  16. <path d="M16 4h2a2 2 0 012 2v14a2 2 0 01-2 2H6a2 2 0 01-2-2V6a2 2 0 012-2h2"></path>
  17. <rect width="8" height="4" x="8" y="2" rx="1" ry="1"></rect>
  18. </svg>
  19. );
  20. }
  21. export default React.memo(Clipboard);