import type { LucideIcon } from "lucide-react"; import { Inbox } from "lucide-react"; import { cn } from "@/lib/utils"; interface EmptyStateProps { icon?: LucideIcon; title?: string; description?: string; className?: string; } export function EmptyState({ icon: Icon = Inbox, title = "No data yet", description = "Nothing to display here yet.", className, }: EmptyStateProps) { return (

{title}

{description}

); }