ant-design/components/progress/demo/segment.md

25 lines
366 B
Markdown
Raw Normal View History

2018-01-19 15:22:37 +08:00
---
order: 9
title:
zh-CN: 分段进度条
en-US: Progress bar with success segment
---
## zh-CN
标准的进度条。
## en-US
A standard progress bar.
````jsx
import { Tooltip, Progress } from 'antd';
ReactDOM.render(
<Tooltip title="3 done / 3 in progress / 4 to do">
<Progress percent={60} successPercent={30} />
2018-06-27 15:55:04 +08:00
</Tooltip>,
mountNode);
2018-01-19 15:22:37 +08:00
````