mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-22 06:34:22 +00:00
Change aria-role
to just role
This commit is contained in:
parent
e1f3b83ce9
commit
f942a8e556
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ type ToolBarProps = {
|
|||
|
||||
export function ToolBar({vertical, horizontal, children}: ToolBarProps) {
|
||||
return (
|
||||
<div className={classNames("toolbar", `toolbar-${vertical}`, `toolbar-${horizontal}`)} aria-role="toolbar">
|
||||
<div className={classNames("toolbar", `toolbar-${vertical}`, `toolbar-${horizontal}`)} role="toolbar">
|
||||
{children}
|
||||
</div>
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue