export function MoonIcon({ className, alt, size, }: { className?: string; alt: string; size?: number; }) { return ( {alt !== "" && {alt}} ); }