type CopyIconProps = { width?: number; height?: number; }; export default function CopyIcon({ width = 20, height = 20 }: CopyIconProps) { return ( <> ); }