interface RotatePhoneIconProps { width?: string; height?: string; color?: string; } export function RotatePhoneIcon({ width = '80px', height = '80px', color = '#1976d2', }: RotatePhoneIconProps) { return ( ); }