import { type LucideIcon } from "lucide-react"; import { cn } from "@/lib/utils"; interface EmptyStateProps { icon: LucideIcon; title: string; description?: string; className?: string; action?: React.ReactNode; } export function EmptyState({ icon: Icon, title, description, className, action }: EmptyStateProps) { return (

{title}

{description &&

{description}

} {action &&
{action}
}
); }