mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
11 lines
400 B
TypeScript
11 lines
400 B
TypeScript
import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers';
|
|
export interface ButtonGroupProps extends BsPrefixPropsWithChildren {
|
|
role?: string;
|
|
size?: 'sm' | 'lg';
|
|
toggle?: boolean;
|
|
vertical?: boolean;
|
|
}
|
|
declare type ButtonGroup = BsPrefixRefForwardingComponent<'div', ButtonGroupProps>;
|
|
declare const ButtonGroup: ButtonGroup;
|
|
export default ButtonGroup;
|