mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 20:19:44 +08:00
470 B
470 B
小型进度圈
- order: 3
小一号的圈形进度。
var Circle = antd.Progress.Circle;
React.render(
<div>
<Circle percent="30" width="80" />
<Circle percent="70" width="80" status="exception" />
<Circle percent="100" width="80" />
</div>
, document.getElementById('components-progress-demo-circle-mini'));