Steps component display progress & tasks through a sequence order.
vertical props.status prop to indicate that step is in error state.current prop.onChange to make Steps clickable.| Prop | Description | Type | Default |
|---|---|---|---|
| current | The current step, counting from 0 | number | 0 |
| onChange | Callback when Steps is changed | (index: number) => void | - |
| status | Status of current step | 'complete' | 'pending' | 'in-progress' | 'error' | 'in-progress' |
| vertical | Whether to display Steps in vertical | boolean | false |
| Prop | Description | Type | Default |
|---|---|---|---|
| customIcon | Custom element for Step label | ReactNode | string | - |
| description | Step description, only available when Step is vertical | ReactNode | string | - |
| title | Step title | ReactNode | string | - |