mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-22 14:44:21 +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) {
|
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>
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue