import { FC, SVGAttributes } from 'react'; import styles from './cog.module.scss'; export type CogProps = SVGAttributes; /** * Cog component * * Render a cog svg icon. */ export const Cog: FC = ({ className = '', ...props }) => { return ( ); };