"use client"; import { BotIcon } from "lucide-react"; import { type Agent } from "@/core/agents"; import { cn } from "@/lib/utils"; export function AgentWelcome({ className, agent, agentName, }: { className?: string; agent: Agent | null | undefined; agentName: string; }) { const displayName = agent?.name ?? agentName; const description = agent?.description; return (
{description}
)}