"use client"; import * as React from "react"; import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog"; import { cn } from "@/lib/utils"; import { buttonVariants } from "./button"; function AlertDialog({ ...props }: React.ComponentProps) { return ; } const AlertDialogTrigger = React.forwardRef< React.ComponentRef, React.ComponentProps >(({ className, ...props }, ref) => { return ( ); }); AlertDialogTrigger.displayName = AlertDialogPrimitive.Trigger.displayName; function AlertDialogPortal({ ...props }: React.ComponentProps) { return ( ); } const AlertDialogOverlay = React.forwardRef< React.ComponentRef, React.ComponentProps >(({ className, ...props }, ref) => { return ( ); }); AlertDialogOverlay.displayName = AlertDialogPrimitive.Overlay.displayName; const AlertDialogContent = React.forwardRef< React.ComponentRef, React.ComponentProps >(({ className, ...props }, ref) => { return ( ); }); AlertDialogContent.displayName = AlertDialogPrimitive.Content.displayName; const AlertDialogHeader = React.forwardRef< HTMLDivElement, React.ComponentProps<"div"> >(({ className, ...props }, ref) => (
)); AlertDialogHeader.displayName = "AlertDialogHeader"; const AlertDialogFooter = React.forwardRef< HTMLDivElement, React.ComponentProps<"div"> >(({ className, ...props }, ref) => (
)); AlertDialogFooter.displayName = "AlertDialogFooter"; const AlertDialogTitle = React.forwardRef< React.ComponentRef, React.ComponentProps >(({ className, ...props }, ref) => { return ( ); }); AlertDialogTitle.displayName = AlertDialogPrimitive.Title.displayName; const AlertDialogDescription = React.forwardRef< React.ComponentRef, React.ComponentProps >(({ className, ...props }, ref) => { return ( ); }); AlertDialogDescription.displayName = AlertDialogPrimitive.Description.displayName; const AlertDialogAction = React.forwardRef< React.ComponentRef, React.ComponentProps >(({ className, ...props }, ref) => { return ( ); }); AlertDialogAction.displayName = AlertDialogPrimitive.Action.displayName; const AlertDialogCancel = React.forwardRef< React.ComponentRef, React.ComponentProps >(({ className, ...props }, ref) => { return ( ); }); AlertDialogCancel.displayName = AlertDialogPrimitive.Cancel.displayName; export { AlertDialog, AlertDialogPortal, AlertDialogOverlay, AlertDialogTrigger, AlertDialogContent, AlertDialogHeader, AlertDialogFooter, AlertDialogTitle, AlertDialogDescription, AlertDialogAction, AlertDialogCancel, };