## Wizard Steps — Navigation Transition knows forward from back. Docs: https://www.interior.dev/docs/wizard-steps Reference: https://www.interior.dev/reference/wizard-steps License: https://github.com/ddoemonn/interior/blob/main/LICENSE (MIT) ### Install Requires a React project. Install `motion`; the styled example uses Tailwind CSS utilities. The source file is copied into your project. `bunx shadcn@latest add https://www.interior.dev/r/wizard-steps.json` Or run `bun add motion` and copy the source below. ### Usage ```tsx "use client"; import { useState } from "react"; import { WizardSteps, type WizardStep } from "@/components/interior/wizard-steps"; export function WorkspaceOnboarding({ onDone }: { onDone: (v: { name: string; team: string }) => void }) { const [value, setValue] = useState({ name: "", team: "" }); const steps: WizardStep[] = [ { id: "profile", label: "Your profile", content: ( setValue((v) => ({ ...v, name: e.target.value }))} placeholder="Full name" className="h-9 w-full rounded-[9px] border border-stone-200 px-3 text-[13px] outline-none dark:border-white/[0.16] dark:bg-[#1D1D1A]" /> ), }, { id: "team", label: "Invite your team", content: (