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
toggle-demo
No opentui live preview is registered for this example yet.
Installation
$ pnpm dlx shadcn@latest add @termcn/toggle
Usage
import { Toggle } from "@/components/ui/toggle";<Toggle checked={enabled} onChange={setEnabled} label="Dark mode" />API Reference
Toggle
| Prop | Type | Default |
|---|---|---|
checked | boolean | - |
onChange | (checked: boolean) => void | - |
label | string | - |
onLabel | string | "ON" |
offLabel | string | "OFF" |
id | string | - |
disabled | boolean | false |
checkedIcon | string | "●" |
uncheckedIcon | string | "○" |
borderStyle | "single" | "double" | "round" | "bold" | "singleDouble" | "doubleSingle" | "classic" | "round" |
paddingX | number | 1 |