import { FC } from 'react'; import styles from './moon.module.scss'; export type MoonProps = { /** * Set additional classnames to the icon. */ className?: string; /** * The SVG title. */ title?: string; }; const Moon: FC = ({ className = '', title }) => { return ( {title !== 'undefined' && {title}} ); }; export default Moon;