...
Switch between multiple content sections with tab controls.
npx neobrutal add tabsimport { Tabs, TabsList, TabsTrigger, TabsContent } from '@/components/ui/tabs'<Tabs defaultValue='account'>
<TabsList>
<TabsTrigger value='account'>Account</TabsTrigger>
<TabsTrigger value='password'>Password</TabsTrigger>
</TabsList>
<TabsContent value='account'>
Make changes to your account here.
</TabsContent>
<TabsContent value='password'>
Change your password here.
</TabsContent>
</Tabs>This component is built on top of Base UI Tabs. Refer to the Base UI documentation for the full list of available props.