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.
12 lines
522 B
12 lines
522 B
import * as React from 'react';
|
|
import { BsPrefixProps } from './helpers';
|
|
export interface ModalDialogProps extends React.HTMLAttributes<HTMLDivElement>, BsPrefixProps {
|
|
size?: 'sm' | 'lg' | 'xl';
|
|
fullscreen?: true | string | '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;
|