import { Button } from "@/components/ui/button"; import { Trash2, Folder, AlertTriangle } from "lucide-react"; import { cn } from "@/lib/utils"; import type { Project } from "../shared/types"; interface DangerZoneSectionProps { project: Project | null; onDeleteClick: () => void; } export function DangerZoneSection({ project, onDeleteClick, }: DangerZoneSectionProps) { if (!project) return null; return (
Permanently remove this project from Automaker.
{project.name}
{project.path}