import { Button } from "@/components/ui/button"; import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, } from "@/components/ui/dialog"; export function DeleteProjectDialog({ isOpen, onOpenChange, onConfirm, }: { isOpen: boolean; onOpenChange: (open: boolean) => void; onConfirm: () => void; }) { return ( { e.preventDefault(); e.stopPropagation(); }} > Delete Project Are you sure you want to delete this project? This action cannot be undone. ); }