mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 05:29:37 +08:00
460 B
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'));