mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-29 20:08:37 +08:00
753c01ae18
fix antd.notification
23 lines
454 B
Markdown
23 lines
454 B
Markdown
# 进度条
|
|
|
|
- order: 0
|
|
|
|
标准的进度条。
|
|
|
|
---
|
|
|
|
````jsx
|
|
import { Progress } from 'antd';
|
|
const ProgressLine = Progress.Line;
|
|
|
|
ReactDOM.render(
|
|
<div>
|
|
<ProgressLine percent={30} />
|
|
<ProgressLine percent={50} status="active" />
|
|
<ProgressLine percent={70} status="exception" />
|
|
<ProgressLine percent={100} />
|
|
<ProgressLine percent={50} showInfo={false} />
|
|
</div>
|
|
, document.getElementById('components-progress-demo-line'));
|
|
````
|