"use client"; import * as React from "react"; import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle, DialogTrigger, } from "./dialog"; import { Button } from "./button"; const AlertDialog = Dialog; const AlertDialogTrigger = DialogTrigger; const AlertDialogContent = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => ( )); AlertDialogContent.displayName = "AlertDialogContent"; const AlertDialogHeader = DialogHeader; const AlertDialogTitle = DialogTitle; const AlertDialogDescription = DialogDescription; const AlertDialogFooter = ({ className, ...props }: React.HTMLAttributes) => (
); AlertDialogFooter.displayName = "AlertDialogFooter"; const AlertDialogAction = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef >(({ className, ...props }, ref) => (