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
bullet-list-demo
No opentui live preview is registered for this example yet.
Installation
$ pnpm dlx shadcn@latest add @termcn/bullet-list
Usage
import { BulletList } from "@/components/ui/bullet-list";<BulletList>
<BulletList.Item label="Install dependencies" bold>
<BulletList.Sub>
<BulletList.TreeItem label="opentui@5.1.0" />
<BulletList.TreeItem label="react@18.3.0" />
</BulletList.Sub>
</BulletList.Item>
<BulletList.Item label="Configure project" />
<BulletList.CheckItem label="Write tests" done />
<BulletList.CheckItem label="Deploy to production" />
</BulletList>API Reference
BulletList
| Prop | Type | Default |
|---|---|---|
children | ReactNode | required |
BulletList.Item
| Prop | Type | Default |
|---|---|---|
label | string | required |
bold | boolean | false |
color | string | - |
children | ReactNode | - |
BulletList.Sub
| Prop | Type | Default |
|---|---|---|
children | ReactNode | required |
BulletList.TreeItem
| Prop | Type | Default |
|---|---|---|
label | string | required |
color | string | - |
BulletList.CheckItem
| Prop | Type | Default |
|---|---|---|
label | string | required |
done | boolean | false |
color | string | - |