"use client"; import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, } from "@/components/ui/dialog"; import { Button } from "@/components/ui/button"; type Props = { open: boolean; onOpenChange: (open: boolean) => void; title: string; description: string; onConfirm: () => void; destructive?: boolean; }; export function ConfirmDialog({ open, onOpenChange, title, description, onConfirm, destructive, }: Props) { return ( {title} {description} ); }