interface EmptyStateProps { icon?: string; title: string; description?: string; } export function EmptyState({ icon = "--", title, description }: EmptyStateProps) { return (
{title}
{description}