"use client"; import React from "react"; import { Button } from "@/components/ui/button"; import { ChevronDown, ChevronUp } from "lucide-react"; import type { SubAgent } from "@/app/types/types"; interface SubAgentIndicatorProps { subAgent: SubAgent; onClick: () => void; isExpanded?: boolean; } export const SubAgentIndicator = React.memo( ({ subAgent, onClick, isExpanded = true }) => { return (
); } ); SubAgentIndicator.displayName = "SubAgentIndicator";