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