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

23 lines
450 B
Markdown
Raw Normal View History

2015-06-15 14:43:27 +08:00
# 进度条
2015-06-14 12:55:44 +08:00
- order: 0
2015-06-15 14:43:27 +08:00
标准的进度条。
2015-06-14 12:55:44 +08:00
---
````jsx
2015-11-19 13:42:10 +08:00
import { Progress, Icon } from 'antd';
const ProgressLine = Progress.Line;
2015-06-14 12:55:44 +08:00
2015-10-20 16:47:55 +08:00
ReactDOM.render(
2015-06-14 19:50:23 +08:00
<div>
<ProgressLine percent={30} />
<ProgressLine percent={50} status="active" />
2015-11-19 13:42:10 +08:00
<ProgressLine percent={70} status="exception" format={<Icon type="exclamation" />} />
<ProgressLine percent={100} />
<ProgressLine percent={50} showInfo={false} />
2015-06-14 19:50:23 +08:00
</div>
, mountNode);
2015-06-14 12:55:44 +08:00
````