UNPKG

react-bootstrap-v5

Version:

Bootstrap 4 components built with React

12 lines (11 loc) 532 B
import React from 'react'; import { BsPrefixPropsWithChildren } from './helpers'; export interface ModalDialogProps extends React.HTMLAttributes<HTMLDivElement>, BsPrefixPropsWithChildren { size?: 'sm' | 'lg' | 'xl'; fullscreen?: true | 'sm-down' | 'md-down' | 'lg-down' | 'xl-down' | 'xxl-down'; centered?: boolean; scrollable?: boolean; contentClassName?: string; } declare const ModalDialog: React.ForwardRefExoticComponent<ModalDialogProps & React.RefAttributes<HTMLDivElement>>; export default ModalDialog;