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

460 B

Circle 用法

  • order: 0

Progress Circle用法


var Circle = antd.Progress.Circle;

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