You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
416 B

# 小型进度条
10 years ago
- order: 2
10 years ago
适合放在较狭窄的区域内。
10 years ago
---
````jsx
var Progress = antd.Progress.Line;
10 years ago
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" />
10 years ago
</div>
, document.getElementById('components-progress-demo-line-mini'));
````