interface CustomTimeIconProps { className?: string; fill?: string; width?: number; height?: number; } /** @deprecated Use icons from icons-v2-generated instead. */ export const CustomTimeIcon = ({ className, fill = "#888888", width = 24, height = 24, ...props }: CustomTimeIconProps) => ( )