import React from 'react'; interface SunIconProps { color?: string; className?: string; width?: number; height?: number; } /** @deprecated Use icons from icons-v2-generated instead. */ export const SunIcon: React.FC = ({ className = "", width = 24, height = 24, color = 'white' }) => { return ( ); };