liber-salti
Version:
Saltí - Liber Design System
19 lines (18 loc) • 374 B
TypeScript
export interface MobileStepperProps {
/**
* The total steps
*/
stepAmount: number;
/**
* Set the active step (zero based index)
*/
currentStep: number;
/**
* The previous button click callback.
*/
onPrevious: () => void;
/**
* The next button click callback.
*/
onNext: () => void;
}