import { Inbox } from "lucide-react" import type * as React from "react" import { cn } from "@/lib/utils" export interface EmptyStateProps extends React.HTMLAttributes { title: string description?: string icon?: React.ElementType action?: React.ReactNode } export function EmptyState({ title, description, icon: Icon = Inbox, action, className, ...props }: EmptyStateProps) { return (

{title}

{description &&

{description}

} {action &&
{action}
}
) }