Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ButtonToolbar.d.ts 227B

123456789101112
  1. import { BsPrefixComponent } from './helpers';
  2. export interface ButtonToolbarProps {
  3. role?: string;
  4. }
  5. declare class ButtonToolbar extends BsPrefixComponent<
  6. 'div',
  7. ButtonToolbarProps
  8. > {}
  9. export default ButtonToolbar;