Tabs

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

Manage your account information.

Installation

pnpm add @ag/ui

Usage

import { Tabs, TabsContent, TabsList, TabsTrigger } from "@ag/ui"
<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>

Composition

Use the following composition to build Tabs:

Tabs
├── TabsList
│   ├── TabsTrigger
│   └── TabsTrigger
├── TabsContent
└── TabsContent

Examples

Line

Use the variant="line" prop on TabsList for a line style.

Vertical

Use orientation="vertical" for vertical tabs.

Disabled

Icons

RTL

To enable RTL support in shadcn/ui, see the RTL configuration guide.

API Reference

See the Radix Tabs documentation.