❤️ Support our project - Your donation helps us continue developing awesome tools!


Docs
Tabs

Tabs

A set of layered sections of content—known as tab panels—that are displayed one at a time.

A tabs component with two forms.

Account

Make changes to your account here. Click save when you're done.

Installation

npx nyxbui@latest add tabs

Usage

import { Tabs, TabsContent, TabsList, TabsTrigger } from "~/components/ui/tabs"
<Tabs defaultValue="account" className="w-[400px]">
  <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>