In the Tabs component, the label can be a node instead of a simple string.
But the way the key is computed : https://github.com/codegouvfr/react-dsfr/blob/main/src/Tabs.tsx#L160
<li key={label + (iconId ?? "")} role="presentation">
may give the <li> a non unique [object Object] key.
I encountered this when putting labels inside <span> .
Wouldn't it be a better option to choose the tabIndex as the key ?