import { ChevronDown, ChevronRight } from "lucide-react"; import { AgentMetricsBar } from "./AgentMetricsBar"; import { ActiveAgentsPanel } from "./ActiveAgentsPanel"; import type { Agent, AgentStats } from "../api"; import "./AgentsOverviewBar.css"; interface AgentsOverviewBarProps { stats: AgentStats | null; activeAgents: Agent[]; projectId?: string; isOpen: boolean; onToggle: () => void; onSelectAgent?: (agentId: string) => void; onOpenTaskLogs?: (taskId: string) => void; } export function AgentsOverviewBar({ stats, activeAgents, projectId, isOpen, onToggle, onSelectAgent, onOpenTaskLogs, }: AgentsOverviewBarProps) { return (
{isOpen ? (
) : null}
); }