UNPKG

400 BTypeScriptView Raw
1import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers';
2export interface ButtonGroupProps extends BsPrefixPropsWithChildren {
3 role?: string;
4 size?: 'sm' | 'lg';
5 toggle?: boolean;
6 vertical?: boolean;
7}
8declare type ButtonGroup = BsPrefixRefForwardingComponent<'div', ButtonGroupProps>;
9declare const ButtonGroup: ButtonGroup;
10export default ButtonGroup;