interface FlowchartConnectorProps { completed: boolean; isPhase?: boolean; } export function FlowchartConnector({ completed, isPhase = false }: FlowchartConnectorProps) { const height = isPhase ? 32 : 20; const color = completed ? '#22c55e' : '#475569'; return (
); }