Utility
AI
Terminal
Installation
pnpm dlx shadcn@latest add https://termcn.dev/r/wizard.json
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 | undefined |
onCancel | () => void | undefined |
showProgress | boolean | true |
WizardStep
| Prop | Type | Default |
|---|---|---|
key | string | required |
title | string | required |
content | ReactNode | required |
validate | () => boolean | string | undefined |