import { FC } from 'react'; import styles from './sun.module.scss'; type SunProps = { /** * The SVG title. */ title?: string; }; /** * Sun component. * * Render a svg sun icon. */ const Sun: FC = ({ title }) => { return ( {title !== 'undefined' && {title}} ); }; export default Sun;