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