aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/career.tsx
blob: f28d3998bddc15547d27f5d9f26329e9818c6773 (plain)
1
2
3
4
5
pre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #333333 } /* Generic.Heading */
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #666666 } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008800 } /* Keyword.Pseudo */
.highlight .kr { color: #008800; font-weight: bold } /* Keyword.Res
import { FC } 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: FC<CareerProps> = ({ className = '' }) => {
  return (
    <svg
      viewBox="0 0 100 100"
      xmlns="http://www.w3.org/2000/svg&quo
58,10.17849 c 12.6493,-1.81512 21.613185,-1.732794 33.666442,0 l 1.683339,10.99517 h -5.891624 v -5.474639 c -7.949741,-2.722434 -16.311959,-2.706359 -25.249837,0 v 5.474639 h -5.891625 z" /> <path className={styles.top} d="M 0.72670447,19.813041 H 77.467597 V 51.17622 H 0.72670447 Z" /> <path className={styles.diploma} d="M 44.217117,47.159906 H 98.921356 V 82.664122 H 44.217117 Z" /> <path className={styles['seal-bottom']} d="m 84.933665,80.775336 h 6.957554 V 90.992144 L 88.412426,87.2244 84.933665,90.992144 Z" /> <path className={styles['seal-top']} d="m 93.326919,76.83334 a 4.914472,4.9188584 0 0 1 -4.914493,4.918858 4.914472,4.9188584 0 0 1 -4.914461,-4.918858 4.914472,4.9188584 0 0 1 4.914461,-4.918858 4.914472,4.9188584 0 0 1 4.914493,4.918858 z" /> <path className={styles.lines} d="m 54.53557,60.491974 h 34.067282 v 1.515453 H 54.53557 Z" /> <path className={styles.lines} d="m 54.53557,67.437763 h 34.067282 v 1.515453 H 54.53557 Z" /> <path className={styles.lines} d="m 54.53557,74.383628 h 17.563315 v 1.515454 H 54.53557 Z" /> <path className={styles.lines} d="m 63.495911,53.546123 h 16.146628 v 1.515452 H 63.495911 Z" /> <path className={styles.lock} d="M 34.048314,42.893007 H 44.145988 V 57.849688 H 34.048314 Z" /> </svg> ); }; export default Career;