summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/career.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/icons/career.tsx')
-rw-r--r--src/components/atoms/icons/career.tsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/atoms/icons/career.tsx b/src/components/atoms/icons/career.tsx
index f28d399..009c2b4 100644
--- a/src/components/atoms/icons/career.tsx
+++ b/src/components/atoms/icons/career.tsx
@@ -3,6 +3,10 @@ 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;
@@ -13,12 +17,13 @@ export type CareerProps = {
*
* Render a career svg icon.
*/
-const Career: FC<CareerProps> = ({ className = '' }) => {
+const Career: FC<CareerProps> = ({ className = '', ...props }) => {
return (
<svg
viewBox="0 0 100 100"
xmlns="http://www.w3.org/2000/svg"
className={`${styles.icon} ${className}`}
+ {...props}
>
<path
className={styles.bottom}