UNPKG

362 BTypeScriptView Raw
1import * as React from 'react';
2import { BsPrefixProps, BsPrefixRefForwardingComponent } from './helpers';
3export interface ButtonGroupProps extends BsPrefixProps, React.HTMLAttributes<HTMLElement> {
4 size?: 'sm' | 'lg';
5 vertical?: boolean;
6}
7declare const ButtonGroup: BsPrefixRefForwardingComponent<'div', ButtonGroupProps>;
8export default ButtonGroup;