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/wizard
Usage
import { Wizard } from "@/components/ui/wizard";<Wizard
steps={[
{
key: "install",
title: "Install",
content: <Text>Install dependencies</Text>,
},
{
key: "configure",
title: "Configure",
content: <Text>Set up your preferences</Text>,
},
{
key: "finish",
title: "Finish",
content: <Text>Review and confirm your settings</Text>,
},
]}
onComplete={(keys) => console.log("Completed:", keys)}
onCancel={() => console.log("Cancelled")}
/>API Reference
Wizard
| Prop | Type | Default |
|---|---|---|
steps | WizardStep[] | required |
onComplete | (completedSteps: string[]) => void | - |
onCancel | () => void | - |
showProgress | boolean | true |
WizardStep
| Prop | Type | Default |
|---|---|---|
key | string | required |
title | string | required |
content | ReactNode | required |
validate | () => boolean | string | - |