mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-17 19:00:15 +08:00
20 lines
416 B
Markdown
20 lines
416 B
Markdown
# 小型进度条
|
|
|
|
- order: 1
|
|
|
|
适合放在较狭窄的区域内。
|
|
|
|
---
|
|
|
|
````jsx
|
|
var Progress = antd.Progress.Line;
|
|
|
|
React.render(
|
|
<div>
|
|
<Progress percent="30" width="170" strokeWidth="3" />
|
|
<Progress percent="70" width="170" strokeWidth="3" status="exception" />
|
|
<Progress percent="100" width="170" strokeWidth="3" />
|
|
</div>
|
|
, document.getElementById('components-progress-demo-line-mini'));
|
|
````
|