circle-mini.md 465 字节
Newer Older
夏奈 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
# Circle 用法

- order: 0

Progress Circle用法

---

````jsx
var Circle = antd.Progress.Circle;

React.render(
  <div>
m  
夏奈 已提交
14 15 16
    <Circle percent="30" width="100" />
    <Circle percent="70" width="100" status="exception" />
    <Circle percent="100" width="100" />
夏奈 已提交
17 18 19 20 21 22 23 24 25 26 27
  </div>
  , document.getElementById('components-progress-demo-circle-mini'));
````

<style>
.ant-progress-circle-wrap,
.ant-progress-line-wrap {
  margin-right: 15px;
  margin-bottom: 15px;
}
</style>