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
424 B
Markdown

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