import type { SVGProps } from "react"; export interface Copy03IconProps extends Omit, "width" | "height"> { className?: string; size?: number; color?: string; } export function Copy03Icon({ className = "", size = 24, color = "currentColor", ...props }: Copy03IconProps) { return ( ); }