You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design/components/progress/demo/circle.md

28 lines
458 B
Markdown

# Circle 用法
- order: 0
Progress Circle用法
---
````jsx
var Circle = antd.Progress.Circle;
React.render(
<div>
<Circle percent="30" width="126" />
<Circle percent="70" width="126" status="exception" />
<Circle percent="100" width="126" />
</div>
, document.getElementById('components-progress-demo-circle'));
````
<style>
.ant-progress-circle-wrap,
.ant-progress-line-wrap {
margin-right: 8px;
margin-bottom: 5px;
}
</style>