import { FC } from 'react'; import styles from './cog.module.scss'; export type CogProps = { /** * Should the svg be hidden from assistive technologies? */ 'aria-hidden'?: boolean; /** * Set additional classnames to the icon. */ className?: string; }; /** * Cog component * * Render a cog svg icon. */ const Cog: FC = ({ className = '', ...props }) => { return ( ); }; export default Cog;