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