import type { ReactNode } from "react"; interface EmptyStateProps { icon?: string; title: string; description?: string; action?: ReactNode; } export function EmptyState({ icon = "📭", title, description, action }: EmptyStateProps) { return (
{description}
} {action}{message}
{message}
{onRetry && ( )}