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