/** @jsx h */ import { ComponentChildren, h } from "https://esm.sh/preact@10.17.1"; import { tw } from "https://esm.sh/twind@0.16.16"; import { DividerBackgroundColor, HoverButtonBackgroudColor } from "../style/colors.ts"; export function ButtonGroup(props: { children: ComponentChildren; class?: string; style?: string | h.JSX.CSSProperties | h.JSX.SignalLike; }) { return (
{props.children}
); }