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