From ac79a48c07c538316949d6284bc5d9c0eb2e3f91 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 7 Jun 2022 12:11:28 +0200 Subject: chore: add aria hidden attribute to SVG icons --- src/components/atoms/icons/computer-screen.tsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/components/atoms/icons/computer-screen.tsx') diff --git a/src/components/atoms/icons/computer-screen.tsx b/src/components/atoms/icons/computer-screen.tsx index 8786139..9293316 100644 --- a/src/components/atoms/icons/computer-screen.tsx +++ b/src/components/atoms/icons/computer-screen.tsx @@ -2,6 +2,10 @@ import { FC } from 'react'; import styles from './computer-screen.module.scss'; export type ComputerScreenProps = { + /** + * Should the svg be hidden from assistive technologies? + */ + 'aria-hidden'?: boolean; /** * Set additional classnames to the icon. */ @@ -13,12 +17,16 @@ export type ComputerScreenProps = { * * Render a computer screen svg icon. */ -const ComputerScreen: FC = ({ className = '' }) => { +const ComputerScreen: FC = ({ + className = '', + ...props +}) => { return (