goobs-frontend
Version:
A comprehensive React-based libary for building modern web applications
29 lines • 814 B
TypeScript
import { default as React } from 'react';
export interface DialogProps {
open: boolean;
onClose: () => void;
children: React.ReactNode;
styles?: {
theme?: string;
maxWidth?: string;
width?: string;
height?: string;
minHeight?: string;
maxHeight?: string;
padding?: string;
borderRadius?: string;
backgroundColor?: string;
border?: string;
borderColor?: string;
topOffset?: string;
fullWidth?: boolean;
backdropBackgroundColor?: string;
backdropFilter?: string;
boxShadow?: string;
};
customDialogStyles?: React.CSSProperties;
dataDialogPaper?: boolean;
}
declare const Dialog: React.FC<DialogProps>;
export default Dialog;
//# sourceMappingURL=index.d.ts.map