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

20 lines
374 B
Markdown
Raw Normal View History

2015-06-14 12:55:44 +08:00
# Line 用法
- order: 0
Progress Line用法
---
````jsx
var Line = antd.Progress.Line;
React.render(
2015-06-14 19:50:23 +08:00
<div>
2015-06-15 11:48:30 +08:00
<Line percent="30" width="300" strokeWidth="3" />
<Line percent="70" width="300" strokeWidth="3" status="exception" />
<Line percent="100" width="300" strokeWidth="3" />
2015-06-14 19:50:23 +08:00
</div>
, document.getElementById('components-progress-demo-line'));
2015-06-14 12:55:44 +08:00
````