ant-design/components/progress/demo/circle-mini.md

30 lines
496 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 3
2016-07-26 15:42:04 +08:00
title:
zh-CN: 小型进度圈
en-US: Mini size circular progress bar
2016-03-31 09:40:55 +08:00
---
2015-06-15 11:48:30 +08:00
2016-07-26 15:42:04 +08:00
## zh-CN
2015-06-15 14:43:27 +08:00
小一号的圈形进度。
2015-06-15 11:48:30 +08:00
2016-07-26 15:42:04 +08:00
## en-US
A smaller circular progress bar.
```tsx
2016-01-20 20:20:24 +08:00
import { Progress } from 'antd';
2022-05-23 14:37:16 +08:00
import React from 'react';
2015-06-15 11:48:30 +08:00
const App: React.FC = () => (
<>
2016-04-05 16:51:26 +08:00
<Progress type="circle" percent={30} width={80} />
<Progress type="circle" percent={70} width={80} status="exception" />
<Progress type="circle" percent={100} width={80} />
</>
2018-11-28 15:00:03 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```