import type { ReactNode } from 'react' import { cn } from '@/lib/cn' export function EmptyState({ icon: Icon, title, description, action, className, }: { icon?: React.ComponentType<{ className?: string }> title: ReactNode description?: ReactNode action?: ReactNode className?: string }) { return (