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
menu-demo
No opentui live preview is registered for this example yet.
Installation
$ pnpm dlx shadcn@latest add @termcn/menu
Usage
import { Menu } from "@/components/ui/menu";<Menu
title="File"
items={[
{ key: "new", label: "New File", shortcut: "⌘N" },
{ key: "save", label: "Save", shortcut: "⌘S" },
]}
onSelect={(item) => console.log(item.key)}
/>API Reference
Menu
| Prop | Type | Default |
|---|---|---|
items | MenuItem[] | required |
onSelect | (item: MenuItem) => void | - |
title | string | - |
MenuItem
| Prop | Type | Default |
|---|---|---|
key | string | required |
label | string | required |
icon | string | - |
shortcut | string | - |
disabled | boolean | - |
separator | boolean | - |
children | MenuItem[] | - |