Hello!
There seems to be an visual issue when using a badge inside a primary button. The badge turns white on white:
Looks fine with a secondary button:
Code example:
<s-button
variant={tab === activeTab ? "primary" : "secondary"}
href={routeToPath({ tab, mode: "list" } as Route)}
>
{tab === "queue" && hasPending ? (
<s-stack direction="inline" gap="small-200" alignItems="center">
{TAB_LABELS[tab]}
<s-badge tone="auto">{pendingLabel}</s-badge>
</s-stack>
) : (
TAB_LABELS[tab]
)}
</s-button>

