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/tabbed-content
Usage
import { TabbedContent } from "@/components/ui/tabbed-content";<TabbedContent
defaultTab="overview"
tabs={[
{
id: "overview",
label: "Overview",
content: <Text>Overview content.</Text>,
},
{ id: "logs", label: "Logs", content: <Text>Logs content.</Text> },
]}
/>API Reference
TabbedContent
| Prop | Type | Default |
|---|---|---|
tabs | TabbedContentTab[] | required |
defaultTab | string | - |
activeTab | string | - |
onChange | (id: string) => void | - |
tabBarStyle | "underline" | "box" | "minimal" | "underline" |
TabbedContentTab
| Prop | Type | Default |
|---|---|---|
id | string | required |
label | string | required |
content | ReactNode | required |
disabled | boolean | - |