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

{title}

{description &&

{description}

}
); }