Use tabs ARIA design pattern when using tabbed UI (#12994)

feat(a11y): use tabs ARIA design pattern when using tabbed UI
This commit is contained in:
Emmanuel Pelletier
2023-03-06 16:13:29 +01:00
committed by GitHub
parent 0d0bec3aad
commit f727b9295f
17 changed files with 338 additions and 239 deletions

View File

@@ -131,7 +131,7 @@ const Dialog = ({
</p>
{!hideCloseButton && (
<ClickableIcon
accessibilityLabel = { t('dialog.close') }
accessibilityLabel = { t('dialog.accessibilityLabel.close') }
icon = { IconCloseLarge }
id = 'modal-header-close-button'
onClick = { onClose } />