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