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