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