import { FC, SVGAttributes } from 'react'; import styles from './career.module.scss'; export type CareerProps = SVGAttributes; /** * Career Component * * Render a career svg icon. */ export const Career: FC = ({ className = '', ...props }) => { return ( ); };