Stepper · wizard

Account
2Profile
3Confirm

Usage

import { signal } from "./index.js";
import { Stepper } from "./components/stepper.js";

const step = signal(1);   // 0-based index of the current step

// past steps show ✓, the current is highlighted; drive it with your own buttons.
Stepper({ steps: ["Account", "Profile", "Confirm"], value: step })