import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, } from "@/components/ui/alert-dialog"; import { buttonVariants } from "../ui/button"; type DeleteSearchDialogProps = { isOpen: boolean; onClose: () => void; onConfirm: () => void; searchName: string; }; export function DeleteSearchDialog({ isOpen, onClose, onConfirm, searchName, }: DeleteSearchDialogProps) { return ( Are you sure? This will permanently delete the saved search "{searchName}". Cancel Delete ); }