ant-design/components/progress/demo/steps.md
偏右 a5efa7a81a
test: increase coverage of Progress/Comment/Avatar/Dropdown (#24439)
* test: increase test case of Progress and Comment

* test: add test case for Avatar

* test: add test case for Dropdown

* fix snapshot

* fix snapshot

* remove console.log

* fix lint

* add avatar
2020-05-25 16:27:02 +08:00

30 lines
470 B
Markdown

---
order: 11
title:
zh-CN: 步骤进度条
en-US: Progress bar with steps
---
## zh-CN
带步骤的进度条。
## en-US
A progress bar with steps.
```jsx
import { Progress } from 'antd';
ReactDOM.render(
<>
<Progress percent={50} steps={3} strokeColor="#1890ff" />
<br />
<Progress percent={30} steps={5} strokeColor="#1890ff" />
<br />
<Progress percent={100} steps={5} size="small" strokeColor="#1890ff" />
</>,
mountNode,
);
```