import * as React from 'react'; import { cn } from '@/lib/utils'; interface EmptyStateProps { icon?: React.ReactNode; title: string; body?: React.ReactNode; actions?: React.ReactNode; className?: string; } export function EmptyState({ icon, title, body, actions, className }: EmptyStateProps) { return (