mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 09:49:57 +08:00
13 lines
364 B
TypeScript
13 lines
364 B
TypeScript
|
import React from 'react';
|
||
|
import { Progress } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<>
|
||
|
<Progress type="circle" percent={30} width={80} style={{ marginRight: 8 }} />
|
||
|
<Progress type="circle" percent={70} width={80} status="exception" />
|
||
|
<Progress type="circle" percent={100} width={80} style={{ marginLeft: 8 }} />
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
export default App;
|