mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
504 B
504 B
order | title | ||||
---|---|---|---|---|---|
1 |
|
zh-CN
圈形的进度。
en-US
A circular progress bar.
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);