mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
11 lines
448 B
TypeScript
11 lines
448 B
TypeScript
import React from 'react';
|
|
import { BsPrefixPropsWithChildren } from './helpers';
|
|
export interface ModalDialogProps extends React.HTMLAttributes<HTMLDivElement>, BsPrefixPropsWithChildren {
|
|
size?: 'sm' | 'lg' | 'xl';
|
|
centered?: boolean;
|
|
scrollable?: boolean;
|
|
contentClassName?: string;
|
|
}
|
|
declare const ModalDialog: React.ForwardRefExoticComponent<ModalDialogProps & React.RefAttributes<HTMLDivElement>>;
|
|
export default ModalDialog;
|