import { FC } from 'react'; import styles from './home.module.scss'; export type HomeProps = { /** * Should the svg be hidden from assistive technologies? */ 'aria-hidden'?: boolean; /** * Set additional classnames to the icon. */ className?: string; }; /** * Home component. * * Render a home svg icon. */ const Home: FC = ({ className = '', ...props }) => { return ( ); }; export default Home;