import type { LucideIcon } from 'lucide-react'; import { cn } from '@/lib/utils'; interface EmptyStateProps { icon?: LucideIcon; title: string; description?: string; children?: React.ReactNode; className?: string; } export function EmptyState({ icon: Icon, title, description, children, className, }: EmptyStateProps) { return (
{description}
)} {children &&