import React from "react"; import { Check } from "lucide-react"; interface TriageProgressProps { currentLevel: number; totalLevels?: number; } export function TriageProgress({ currentLevel, totalLevels = 5 }: TriageProgressProps) { const steps = Array.from({ length: totalLevels }, (_, i) => i + 1); const showRootCause = currentLevel > totalLevels; return (