UNPKG

522 BTypeScriptView Raw
1import * as React from 'react';
2import { BsPrefixProps } from './helpers';
3export interface ModalDialogProps extends React.HTMLAttributes<HTMLDivElement>, BsPrefixProps {
4 size?: 'sm' | 'lg' | 'xl';
5 fullscreen?: true | string | 'sm-down' | 'md-down' | 'lg-down' | 'xl-down' | 'xxl-down';
6 centered?: boolean;
7 scrollable?: boolean;
8 contentClassName?: string;
9}
10declare const ModalDialog: React.ForwardRefExoticComponent<ModalDialogProps & React.RefAttributes<HTMLDivElement>>;
11export default ModalDialog;