SWC Tabs, Tab, TabPanel not rendering

Hello-- in my Premiere Pro panel made with TypeScript and React, I’m using Spectrum Web Components with the React wrapper (swc-react) and have had no issues so far with components like Button, Checkbox, etc. However, when I try to use the Tabs, Tab, and TabPanel components, nothing appears to be rendering. The space where the tabs component should appear is just blank, but I don’t have any error messages in the console. Any help would be much appreciated.

package.json:

"dependencies": {
    "@swc-react/button": "0.37.0",
    "@swc-react/checkbox": "0.37.0",
    "@swc-react/menu": "0.37.0",
    "@swc-react/number-field": "0.37.0",
    "@swc-react/popover": "0.37.0",
    "@swc-react/table": "0.37.0",
    "@swc-react/tabs": "0.37.0",
    "@swc-react/textfield": "0.37.0",
    "@swc-react/theme": "0.37.0",
    "@swc-react/toast": "0.37.0",
    "@swc-uxp-wrappers/menu": "2.0.0",
    "@swc-uxp-wrappers/number-field": "^2.0.0",
    "@swc-uxp-wrappers/overlay": "2.0.0",
    "@swc-uxp-wrappers/popover": "2.0.0",
    "@swc-uxp-wrappers/utils": "2.0.0",
    "react": "^18.3.1",
    "react-dom": "^18.3.1"
  }

What I’m trying to render (file includes import { Tabs, Tab, TabPanel } from "@swc-react/tabs";)

<Tabs selected="1">
  <Tab label="Tab 1" value="1"></Tab>
  <Tab label="Tab 2" value="2"></Tab>
  <Tab label="Tab 3" value="3"></Tab>
  <Tab label="Tab 4" value="4"></Tab>
  <TabPanel value="1">Content for Tab 1</TabPanel>
  <TabPanel value="2">Content for Tab 2</TabPanel>
  <TabPanel value="3">Content for Tab 3</TabPanel>
  <TabPanel value="4">Content for Tab 4</TabPanel>
</Tabs>

It looks like Tabs isn’t supported, according to this list.

Oh, that would do it. Thanks!