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