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/sidebar
Usage
import { Sidebar } from "@/components/ui/sidebar";<Sidebar
title="Explorer"
activeKey="inbox"
items={[
{ key: "inbox", label: "Inbox", icon: "📥", badge: 3 },
{ key: "drafts", label: "Drafts", icon: "📝" },
]}
onSelect={(key) => console.log(key)}
/>API Reference
Sidebar
| Prop | Type | Default |
|---|---|---|
items | SidebarItem[] | required |
activeKey | string | - |
onSelect | (key: string) => void | - |
collapsed | boolean | false |
width | number | 20 |
title | string | - |
SidebarItem
| Prop | Type | Default |
|---|---|---|
key | string | required |
label | string | required |
icon | string | - |
badge | string | number | - |
children | SidebarItem[] | - |