import React from "react"; import classNames from "@calcom/lib/classNames"; type Props = { children: React.ReactNode; combined?: boolean }; export default function ButtonGroup({ children, combined = false }: Props) { return
{children}
; }