import { FC } from 'react'; import styles from './career.module.scss'; export type CareerProps = { /** * Should the svg be hidden from assistive technologies? */ 'aria-hidden'?: boolean; /** * Set additional classnames to the icon. */ className?: string; }; /** * Career Component * * Render a career svg icon. */ const Career: FC = ({ className = '', ...props }) => { return ( ); }; export default Career; type='hidden' name='h' value='v2.0.0'/>
path: root/src/components/atoms/icons/career.test.tsx
blob: 62ffc1499053fe32233fce58aca727a37c3d419b (plain)
1
2
3
4
5
6
7
8
9