circle-mini.md 387 字节
Newer Older
A
afc163 已提交
1
# 小型进度圈
夏奈 已提交
2

A
afc163 已提交
3
- order: 3
夏奈 已提交
4

A
afc163 已提交
5
小一号的圈形进度。
夏奈 已提交
6 7 8 9

---

````jsx
A
afc163 已提交
10
var ProgressCircle = antd.Progress.Circle;
夏奈 已提交
11

Y
beta2  
yiminghe 已提交
12
ReactDOM.render(
夏奈 已提交
13
  <div>
X
xiaoshuai 已提交
14 15 16
    <ProgressCircle percent={30} width={80} />
    <ProgressCircle percent={70} width={80} status="exception" />
    <ProgressCircle percent={100} width={80} />
夏奈 已提交
17 18 19
  </div>
  , document.getElementById('components-progress-demo-circle-mini'));
````