2016-07-21 10:07:30 +08:00
---
category: Components
type: Navigation
cols: 1
title: Steps
---
2017-01-23 16:04:05 +08:00
`Steps` is a navigation bar that guides users through the steps of a task.
2016-07-21 10:07:30 +08:00
2016-09-10 13:43:30 +08:00
## When To Use
2016-07-21 10:07:30 +08:00
When the task is complicated or has a certain sequence in the series of subtasks, we can decompose it into several steps to make things easier.
## API
```jsx
< Steps >
< Step title = "first step" / >
< Step title = "second step" / >
< Step title = "third step" / >
< / Steps >
```
### Steps
The whole of the step bar.
Property | Description | Type | Default
-----|-----|-----|------
2017-01-20 20:10:50 +08:00
current | to set the current step, counting from 0. You can overwrite this state by using `status` of `Step` | number | 0
status | to specify the status of current step, can be set to one of the following values: `wait` `process` `finish` `error` | string | `process`
size | to specify the size of the step bar, `default` and `small` are currently supported | string | `default`
2017-09-05 16:50:27 +08:00
direction | to specify the direction of the step bar, `horizontal` and `vertical` are currently supported | string | `horizontal`
2017-01-23 16:09:34 +08:00
progressDot | Steps with progress dot style, customize the progress dot by setting it to a function | Boolean or (iconDot, {index, status, title, description}) => ReactNode | false
2016-07-21 10:07:30 +08:00
### Steps.Step
A single step in the step bar.
Property | Description | Type | Default
-----|-----|-----|------
2017-09-05 16:50:27 +08:00
status | to specify the status. It will be automatically set by `current` of `Steps` if not configured. Optional values are: `wait` `process` `finish` `error` | string | `wait`
2017-01-20 20:10:50 +08:00
title | title of the step | string\|ReactNode | -
2017-09-05 16:50:27 +08:00
description | description of the step, optional property | string\|ReactNode | -
2017-01-20 20:10:50 +08:00
icon | icon of the step, optional property | string\|ReactNode | -