Added aria-label to Heading component

• Added:
- aria-label to Heading component
This commit is contained in:
mgabdev 2020-06-15 13:29:07 -04:00
parent 825924f314
commit 286b51008c

View File

@ -13,6 +13,15 @@ const SIZES = {
h6: 'h6',
}
const ARIA_LEVELS = {
h1: '1',
h2: '2',
h3: '3',
h4: '4',
h5: '5',
h6: '6',
}
/**
* Renders an H-tag
* @param {bool} [props.isCentered] - if text is centered within the element
@ -62,6 +71,7 @@ export default class Heading extends PureComponent {
{
className: classes,
role: 'heading',
'aria-level': ARIA_LEVELS[size],
},
children,
)