import { AgentAvatarKind } from "@/types/agent"; type AgentAvatarProps = { kind: AgentAvatarKind; label: string; large?: boolean; }; export function AgentAvatar({ kind, label, large = false }: AgentAvatarProps) { return (
); }