import type { LucideIcon } from "lucide-react"; import type { ReactNode } from "react"; export function EmptyState({ icon: Icon, title, description, action, }: { icon: LucideIcon; title: string; description?: string; action?: ReactNode; }) { return (

{title}

{description && (

{description}

)}
{action}
); }