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