ant-design/components/progress/demo/line.md
2015-06-15 11:48:30 +08:00

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'));