const CopyIcon = ({ className }: { className?: string }) => {
  return (
    <svg
      width="13"
      height="15"
      viewBox="0 0 13 15"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={className}
    >
      <path
        d="M8.49858 12.7479H1.41643V3.54108C1.41643 3.15156 1.09773 2.83286 0.708215 2.83286C0.318697 2.83286 0 3.15156 0 3.54108V12.7479C0 13.5269 0.637394 14.1643 1.41643 14.1643H8.49858C8.8881 14.1643 9.2068 13.8456 9.2068 13.4561C9.2068 13.0666 8.8881 12.7479 8.49858 12.7479ZM12.0397 9.91501V1.41643C12.0397 0.637394 11.4023 0 10.6232 0H4.24929C3.47025 0 2.83286 0.637394 2.83286 1.41643V9.91501C2.83286 10.6941 3.47025 11.3314 4.24929 11.3314H10.6232C11.4023 11.3314 12.0397 10.6941 12.0397 9.91501ZM10.6232 9.91501H4.24929V1.41643H10.6232V9.91501Z"
        fill="currentColor"
      />
    </svg>
  );
};

export { CopyIcon };
