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

{title}

{description && (

{description}

)} {action &&
{action}
}
) } export { EmptyState }