"use client" import * as React from "react" import { AlertDialog as AlertDialogPrimitive } from "radix-ui" import { cn } from "@/lib/utils" import { buttonVariants } from "@/components/ui/button" function AlertDialog({ ...props }) { return ; } function AlertDialogTrigger({ ...props }) { return ; } function AlertDialogPortal({ ...props }) { return ; } 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 ( ); } function AlertDialogAction({ className, ...props }) { return ( ); } function AlertDialogCancel({ className, ...props }) { return ( ); } export { AlertDialog, AlertDialogPortal, AlertDialogOverlay, AlertDialogTrigger, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, AlertDialogAction, AlertDialogCancel, }