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.

ModalDialog.d.ts 271B

1234567891011
  1. import { BsPrefixComponent } from './helpers';
  2. export interface ModalDialogProps {
  3. size?: 'sm' | 'lg' | 'xl';
  4. centered?: boolean;
  5. scrollable?: boolean;
  6. }
  7. declare class ModalDialog extends BsPrefixComponent<'div', ModalDialogProps> {}
  8. export default ModalDialog;