GodUIGodUI
109Follow on X
Account
Email & password
2
Profile
Name & avatar
3
Workspace
Invite your team
4
Done
All set

Stepper

tsx
import { Stepper } from "@/components/godui/stepper";const steps = [{ label: "Account", description: "Email & password" },{ label: "Profile", description: "Name & avatar" },{ label: "Done", description: "All set" },];export function StepperDemo() {return <Stepper steps={steps} active={1} />;}