Stepper
A multi-step progress indicator for wizards and flows.
Preview
Props
| Prop | Type | Default | Description |
|---|---|---|---|
steps | array | [] | Step labels |
currentStep | number | 0 | Active step index |
Usage
const { Stepper } = window.ColorSnap;
ReactDOM.createRoot(document.getElementById('root')).render(
React.createElement(Stepper, { steps: ['Account', 'Profile', 'Review'], currentStep: 1 })
);