import { FC, SVGAttributes } from 'react'; import styles from './moon.module.scss'; export type MoonProps = SVGAttributes & { /** * The SVG title. */ title?: string; }; export const Moon: FC = ({ className = '', title, ...props }) => { return ( {title ? {title} : null} ); };