import { Wrench, ChevronLeft } from 'lucide-react' import { useNavigate } from 'react-router-dom' interface MaintenanceContextStripProps { treeId: string targetLabel?: string | null batchId?: string | null batchProgress?: { completed: number; total: number } | null } export function MaintenanceContextStrip({ treeId, targetLabel, batchId, batchProgress, }: MaintenanceContextStripProps) { const navigate = useNavigate() return (