ant-design/components/progress/demo/circle.md
2015-06-15 11:00:27 +08:00

508 B

Circle 用法

  • order: 0

Progress Circle用法


var Circle = antd.Progress.Circle;

React.render(
  <div>
    <Circle percent="30" width="100" strokeWidth="4" />
    <Circle percent="70" width="100" strokeWidth="4" status="exception" />
    <Circle percent="100" width="100" strokeWidth="4" />
  </div>
  , document.getElementById('components-progress-demo-circle'));