/// export interface ModalDialogProps { /** * @default false */ isVisible: boolean; /** * */ onClose?: () => void; /** * Whether a close (x) button is visible on top right of the modal dialog or not * @default false */ closable?: boolean; /** * Centered Modal * @default false */ verticalCentered?: boolean; /** * Width * @default 'fit-content' */ width?: string; /** * Height * @default 'fit-content' */ height?: string; padding?: string; children: React.ReactNode; }