UNPKG

@themesberg/react-bootstrap

Version:

Unofficial release of the react-bootstrap library with Bootstrap 5 components built with React

10 lines (9 loc) 378 B
import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers'; export interface ButtonGroupProps extends BsPrefixPropsWithChildren { role?: string; size?: 'sm' | 'lg'; vertical?: boolean; } declare type ButtonGroup = BsPrefixRefForwardingComponent<'div', ButtonGroupProps>; declare const ButtonGroup: ButtonGroup; export default ButtonGroup;