mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 21:59:41 +08:00
374 B
374 B
Line 用法
- order: 0
Progress Line用法
var Line = antd.Progress.Line;
React.render(
<div>
<Line percent="30" width="300" strokeWidth="3" />
<Line percent="70" width="300" strokeWidth="3" status="exception" />
<Line percent="100" width="300" strokeWidth="3" />
</div>
, document.getElementById('components-progress-demo-line'));