Stepper
Stepper shows progress through a multi-step process, displaying completed, current, and upcoming steps.
Installation
npm install @libretexts/davis-react
Basic Usage
import { Stepper } from '@libretexts/davis-react';
const steps = [
{ label: 'Account', description: 'Basic info' },
{ label: 'Profile', description: 'Details' },
{ label: 'Review', description: 'Confirm' },
];
export default function Example() {
return (
<Stepper
steps={steps}
currentStep={1}
/>
);
}
Documentation in Progress
Full documentation for this component is being written. Check back soon for complete API reference, examples, and accessibility guidelines.