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