Dashboard sipadu mbip
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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;