clipboard-copy-icon.tsx 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. import React from "react";
  2. import IconProps from "../../../types/icon-type";
  3. const ClipboardCopyIcon: React.FC<IconProps> = ({
  4. size = "20",
  5. color = "currentColor",
  6. ...attributes
  7. }) => {
  8. return (
  9. <svg
  10. width={size}
  11. height={size}
  12. viewBox="0 0 20 20"
  13. fill="none"
  14. xmlns="http://www.w3.org/2000/svg"
  15. {...attributes}
  16. >
  17. <path
  18. d="M12.917 4.16669H14.3753C14.7621 4.16669 15.133 4.32277 15.4065 4.6006C15.68 4.87843 15.8337 5.25526 15.8337 5.64817V8.33335M7.08366 4.16669H5.62533C5.23855 4.16669 4.86762 4.32277 4.59413 4.6006C4.32064 4.87843 4.16699 5.25526 4.16699 5.64817V16.0185C4.16699 16.4115 4.32064 16.7883 4.59413 17.0661C4.86762 17.3439 5.23855 17.5 5.62533 17.5H14.3753C14.7621 17.5 15.133 17.3439 15.4065 17.0661C15.68 16.7883 15.8337 16.4115 15.8337 16.0185V15"
  19. stroke={color}
  20. strokeWidth="1.5"
  21. strokeLinecap="round"
  22. strokeLinejoin="round"
  23. />
  24. <path
  25. d="M11.875 2.5H8.125C7.77982 2.5 7.5 2.8731 7.5 3.33333V5C7.5 5.46024 7.77982 5.83333 8.125 5.83333H11.875C12.2202 5.83333 12.5 5.46024 12.5 5V3.33333C12.5 2.8731 12.2202 2.5 11.875 2.5Z"
  26. stroke={color}
  27. strokeWidth="1.5"
  28. strokeLinecap="round"
  29. strokeLinejoin="round"
  30. />
  31. <path
  32. d="M17.5 11.6667H10"
  33. stroke={color}
  34. strokeWidth="1.5"
  35. strokeLinecap="round"
  36. strokeLinejoin="round"
  37. />
  38. <path
  39. d="M12.5 9.16669L10 11.6667L12.5 14.1667"
  40. stroke={color}
  41. strokeWidth="1.5"
  42. strokeLinecap="round"
  43. strokeLinejoin="round"
  44. />
  45. </svg>
  46. );
  47. };
  48. export default ClipboardCopyIcon;