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