1
Fork 0
mirror of https://github.com/Steffo99/festa.git synced 2024-10-16 15:07:27 +00:00

Change aria-role to just role

This commit is contained in:
Steffo 2022-06-06 02:28:29 +02:00
parent e1f3b83ce9
commit f942a8e556
Signed by: steffo
GPG key ID: 6965406171929D01

View file

@ -9,7 +9,7 @@ type ToolBarProps = {
export function ToolBar({vertical, horizontal, children}: ToolBarProps) { export function ToolBar({vertical, horizontal, children}: ToolBarProps) {
return ( return (
<div className={classNames("toolbar", `toolbar-${vertical}`, `toolbar-${horizontal}`)} aria-role="toolbar"> <div className={classNames("toolbar", `toolbar-${vertical}`, `toolbar-${horizontal}`)} role="toolbar">
{children} {children}
</div> </div>
) )