Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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;