ant-design/components/progress/demo/circle.md
2016-04-05 17:13:09 +08:00

420 B

order title
1 进度圈

圈形的进度。

import { Progress } from 'antd';

ReactDOM.render(
  <div>
    <Progress type="circle" percent={75} />
    <Progress type="circle" percent={70} status="exception" />
    <Progress type="circle" percent={100} />
  </div>
  , mountNode);