Themes
- Default
- Catppuccin
- Dracula
- High Contrast
- High Contrast Light
- Monokai
- Nord
- One Dark
- Solarized
- Tokyo Night
- AMOLED
- Aura
- Ayu
- Carbonfox
- Catppuccin Frappe
- Catppuccin Macchiato
- Cobalt2
- Cursor
- Everforest
- Flexoki
- GitHub
- Gruvbox
- Kanagawa
- Lucent Orng
- Material
- Matrix
- Mercury
- Night Owl
- OC-2
- One Dark Pro
- OpenCode
- Orng
- Osaka Jade
- Palenight
- Rose Pine
- Shades of Purple
- Synthwave '84
- Vercel
- Vesper
- Zenburn
Utility
AI
Terminal
Installation
$ pnpm dlx shadcn@latest add @termcn/tabs
Usage
import { Tabs } from "@/components/ui/tabs";<Tabs
defaultTab="general"
tabs={[
{
key: "general",
label: "General",
content: <Text>General settings.</Text>,
},
{
key: "appearance",
label: "Appearance",
content: <Text>Theme config.</Text>,
},
]}
/>API Reference
Tabs
| Prop | Type | Default |
|---|---|---|
tabs | Tab[] | required |
defaultTab | string | - |
activeTab | string | - |
onTabChange | (key: string) => void | - |
borderColor | string | - |
borderStyle | "single" | "double" | "round" | "bold" | "singleDouble" | "doubleSingle" | "classic" | "single" |
separator | string | " │ " |
tabBarPaddingX | number | 2 |
paddingX | number | 1 |
paddingY | number | 0 |
Tab
| Prop | Type | Default |
|---|---|---|
key | string | required |
label | string | required |
content | ReactNode | required |