import {JSX, mergeProps, splitProps} from "solid-js"; import classNames from "./classnames"; import {useBootstrapPrefix} from "./ThemeProvider"; import {BsPrefixProps} from "./helpers"; export interface ButtonToolbarProps extends BsPrefixProps, JSX.HTMLAttributes {} const defaultProps: Partial = { role: "toolbar", }; const ButtonToolbar = (p: ButtonToolbarProps) => { const [local, props] = splitProps(mergeProps(defaultProps, p), ["bsPrefix", "class"]); const prefix = useBootstrapPrefix(local.bsPrefix, "btn-toolbar"); return
; }; export default ButtonToolbar;