18 lines
412 B
TypeScript
18 lines
412 B
TypeScript
import * as React from 'react';
|
|
|
|
import { StandardProps } from '../@types/common';
|
|
|
|
export interface ModalDialogProps extends StandardProps {
|
|
/** Primary content */
|
|
children?: React.ReactNode;
|
|
|
|
dialogClassName?: string;
|
|
dialogStyle?: React.CSSProperties;
|
|
|
|
dialogRef?: (instance: HTMLDivElement) => void;
|
|
}
|
|
|
|
declare const ModalDialog: React.ComponentType<ModalDialogProps>;
|
|
|
|
export default ModalDialog;
|