A set of layered sections of content—known as tab panels—that are displayed one at a time.
Usage
import { Tabs } from "@smartacteam/ambient-web/tabs";<Tabs.Root defaultValue="account" className="w-100">
<Tabs.List>
<Tabs.Tab value="account">Account</Tabs.Tab>
<Tabs.Tab value="password">Password</Tabs.Tab>
</Tabs.List>
<Tabs.Panel value="account">Make changes to your account here.</Tabs.Panel>
<Tabs.Panel value="password">Change your password here.</Tabs.Panel>
</Tabs.Root>