import { Bot } from "lucide-react"; interface AgentEmptyStateProps { title?: string; description?: string; ctaLabel?: string; onCtaClick?: () => void; } export function AgentEmptyState({ title = "No agents found", description = "Create an agent to get started", ctaLabel = "Create Agent", onCtaClick, }: AgentEmptyStateProps) { return (
{title}
{description}
{onCtaClick ? ( ) : null}