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
list-demo
No opentui live preview is registered for this example yet.
Installation
$ pnpm dlx shadcn@latest add @termcn/list
Usage
import { List } from "@/components/ui/list";<List
items={[
{ key: "ts", label: "TypeScript", description: "Typed JavaScript" },
{ key: "rs", label: "Rust", description: "Systems language" },
{ key: "go", label: "Go", description: "Cloud-native language" },
]}
onSelect={(item) => console.log(item.key)}
/>API Reference
List
| Prop | Type | Default |
|---|---|---|
items | ListItem[] | required |
onSelect | (item: ListItem) => void | - |
filterable | boolean | false |
height | number | 10 |
cursor | string | "›" |
ListItem
| Prop | Type | Default |
|---|---|---|
key | string | required |
label | string | required |
description | string | - |
color | string | - |