src/pages/governance/_components/CopyToClipboardIcon.tsx

Summary

Maintainability
A
0 mins
Test Coverage
export function CopyToClipboardIcon({ customStyle }: { customStyle?: string }) {
  return (
    <svg
      width="25"
      height="24"
      viewBox="0 0 25 24"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
      className={customStyle}
    >
      <g clipPath="url(#clip0_6839_9399)">
        <path
          d="M16.5 1H4.5C3.4 1 2.5 1.9 2.5 3V17H4.5V3H16.5V1ZM19.5 5H8.5C7.4 5 6.5 5.9 6.5 7V21C6.5 22.1 7.4 23 8.5 23H19.5C20.6 23 21.5 22.1 21.5 21V7C21.5 5.9 20.6 5 19.5 5ZM19.5 21H8.5V7H19.5V21Z"
          fill="#4A72DA"
        />
      </g>
      <defs>
        <clipPath id="clip0_6839_9399">
          <rect
            width="24"
            height="24"
            fill="white"
            transform="translate(0.5)"
          />
        </clipPath>
      </defs>
    </svg>
  );
}