36 lines
641 B
TypeScript
36 lines
641 B
TypeScript
'use client';
|
|
export {
|
|
createAlertDialogScope,
|
|
//
|
|
AlertDialog,
|
|
AlertDialogTrigger,
|
|
AlertDialogPortal,
|
|
AlertDialogOverlay,
|
|
AlertDialogContent,
|
|
AlertDialogAction,
|
|
AlertDialogCancel,
|
|
AlertDialogTitle,
|
|
AlertDialogDescription,
|
|
//
|
|
Root,
|
|
Trigger,
|
|
Portal,
|
|
Overlay,
|
|
Content,
|
|
Action,
|
|
Cancel,
|
|
Title,
|
|
Description,
|
|
} from './AlertDialog';
|
|
export type {
|
|
AlertDialogProps,
|
|
AlertDialogTriggerProps,
|
|
AlertDialogPortalProps,
|
|
AlertDialogOverlayProps,
|
|
AlertDialogContentProps,
|
|
AlertDialogActionProps,
|
|
AlertDialogCancelProps,
|
|
AlertDialogTitleProps,
|
|
AlertDialogDescriptionProps,
|
|
} from './AlertDialog';
|