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