import { Button } from '@/components/ui/button'; import { Trash2, Folder, AlertTriangle, Shield, RotateCcw } from 'lucide-react'; import { cn } from '@/lib/utils'; import type { Project } from '../shared/types'; interface DangerZoneSectionProps { project: Project | null; onDeleteClick: () => void; skipSandboxWarning: boolean; onResetSandboxWarning: () => void; } export function DangerZoneSection({ project, onDeleteClick, skipSandboxWarning, onResetSandboxWarning, }: DangerZoneSectionProps) { return (
Destructive actions and reset options.
Sandbox Warning Disabled
The sandbox environment warning is hidden on startup
{project.name}
{project.path}
No danger zone actions available.
)}