import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog'; import { cn } from '@/lib/utils'; import { buttonVariants } from '@/components/ui/button'; const AlertDialog = AlertDialogPrimitive.Root; const AlertDialogTrigger = AlertDialogPrimitive.Trigger; const AlertDialogPortal = AlertDialogPrimitive.Portal; const AlertDialogCancel = AlertDialogPrimitive.Cancel; const AlertDialogAction = AlertDialogPrimitive.Action; function AlertDialogOverlay({ className, ...props }) { return ( ); } function AlertDialogContent({ className, ...props }) { return ( ); } function AlertDialogHeader({ className, ...props }) { return
; } function AlertDialogFooter({ className, ...props }) { return (
); } function AlertDialogTitle({ className, ...props }) { return ( ); } function AlertDialogDescription({ className, ...props }) { return ( ); } export { AlertDialog, AlertDialogTrigger, AlertDialogPortal, AlertDialogOverlay, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, AlertDialogAction, AlertDialogCancel, };