From c1b6d057ba810705789e02e45f32ad29ce383954 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Fri, 1 Apr 2022 11:25:56 +0200 Subject: chore: add a Cog icon component --- src/components/atoms/icons/cog.tsx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/components/atoms/icons/cog.tsx (limited to 'src/components/atoms/icons/cog.tsx') diff --git a/src/components/atoms/icons/cog.tsx b/src/components/atoms/icons/cog.tsx new file mode 100644 index 0000000..bed19ce --- /dev/null +++ b/src/components/atoms/icons/cog.tsx @@ -0,0 +1,22 @@ +import { FC } from 'react'; +import styles from './cog.module.scss'; + +/** + * Cog component + * + * Render a cog svg icon. + */ +const Cog: FC = () => { + return ( + + + + + ); +}; + +export default Cog; -- cgit v1.2.3