@jengaui/alert-dialog
Version:
Jenga UI Alert Dialog component in React
18 lines (15 loc) • 397 B
TypeScript
import { Dialog } from './types.js';
import '@react-types/dialog';
import 'react';
import 'tastycss';
import '@jengaui/dialog';
import './AlertDialog.js';
import '@jengaui/button';
interface DialogZoneProps {
openedDialog: Dialog | null;
}
/**
* @internal Do not use it
*/
declare function AlertDialogZone(props: DialogZoneProps): JSX.Element;
export { AlertDialogZone, DialogZoneProps };