import type { ComponentType, ReactNode } from "react"; import { cn } from "../utils.js"; interface AgentEmptyStateProps { icon?: ComponentType<{ className?: string }>; title: string; description?: ReactNode; action?: ReactNode; className?: string; } export function AgentEmptyState({ icon: Icon, title, description, action, className, }: AgentEmptyStateProps) { return (
{Icon ? (
); }