UNPKG

@payfit/unity-components

Version:

17 lines (16 loc) 535 B
interface StepProps { /** * The label of the step, displayed under the indicator bar. * It is automatically prefixed with the step number (e.g. `1. Reviewers`). */ label: string; /** * The step number used to identify the step among the step list */ stepNumber: number; } /** * The `Step` component is used to display a step belonging to a `Stepper`. */ declare const Step: import('react').ForwardRefExoticComponent<StepProps & import('react').RefAttributes<HTMLLIElement>>; export { Step };