import type { ReactNode } from 'react' import { cn } from '@/lib/utils' interface EmptyStateProps { icon?: ReactNode title: string description?: string action?: ReactNode className?: string } export function EmptyState({ icon, title, description, action, className }: EmptyStateProps) { return (
{description}
)} {action &&