From 9627efaf47db699ae379fda4db3abd77c55fe8f1 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Thu, 31 Mar 2022 23:13:53 +0200 Subject: chore: add a Home icon component --- src/components/atoms/icons/home.tsx | 48 +++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 src/components/atoms/icons/home.tsx (limited to 'src/components/atoms/icons/home.tsx') diff --git a/src/components/atoms/icons/home.tsx b/src/components/atoms/icons/home.tsx new file mode 100644 index 0000000..90d3a14 --- /dev/null +++ b/src/components/atoms/icons/home.tsx @@ -0,0 +1,48 @@ +import { FC } from 'react'; +import styles from './home.module.scss'; + +/** + * Home component. + * + * Render a home svg icon. + */ +const Home: FC = () => { + return ( + + + + + + + + + + ); +}; + +export default Home; -- cgit v1.2.3