UNPKG

@totalsoft/rocket-ui

Version:

A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.

12 lines (11 loc) 617 B
import React from 'react'; import { DialogProps } from './types'; /** * Dialogs inform users about a task and can contain critical information, require decisions, or involve multiple tasks. * * A Dialog is a type of modal window that appears in front of app content to provide critical information or ask for a decision. Dialogs disable all app functionality when they appear, and remain on screen until confirmed, dismissed, or a required action has been taken. * * Dialogs are purposefully interruptive, so they should be used sparingly. */ declare const Dialog: React.FC<DialogProps>; export default Dialog;