Tulip Logo IconTulip
Components

Tabs

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

Overview

View your key metrics and recent project activity. Track progress across all your active projects.

You have 12 active projects and 3 pending tasks.

Usage

import { Tabs, TabsContent, TabsList, TabsTrigger } from "@tulip-systems/core/components";
<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>

Examples

Line

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

Vertical

Disabled

Icons

On this page