import React from 'react'; interface SunIconProps { className?: string; width?: number; height?: number; } export const SunIcon: React.FC = ({ className = "", width = 24, height = 24 }) => { return ( ); };