UNPKG

@primer/react

Version:

An implementation of GitHub's Primer Design System using React

11 lines (10 loc) 442 B
import { ForwardRefComponent } from "../utils/polymorphic.js"; import { PropsWithChildren } from "react"; //#region src/ButtonGroup/ButtonGroup.d.ts type ButtonGroupProps = PropsWithChildren<{ /** The role of the group */role?: string; /** className passed in for styling */ className?: string; }>; declare const ButtonGroup: ForwardRefComponent<"div", ButtonGroupProps>; //#endregion export { ButtonGroupProps, ButtonGroup as default };