mirror of
https://github.com/Steffo99/festa.git
synced 2024-12-23 15:14:23 +00:00
16 lines
448 B
TypeScript
16 lines
448 B
TypeScript
|
import {default as classNames} from "classnames"
|
||
|
import { ReactNode } from "react"
|
||
|
|
||
|
type ToolBarProps = {
|
||
|
vertical: "top" | "bottom",
|
||
|
horizontal: "left" | "right",
|
||
|
children: ReactNode,
|
||
|
}
|
||
|
|
||
|
export function ToolBar({vertical, horizontal, children}: ToolBarProps) {
|
||
|
return (
|
||
|
<div className={classNames("toolbar", `toolbar-${vertical}`, `toolbar-${horizontal}`)} aria-role="toolbar">
|
||
|
{children}
|
||
|
</div>
|
||
|
)
|
||
|
}
|