mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
12 lines
262 B
TypeScript
12 lines
262 B
TypeScript
|
import React from 'react';
|
||
|
import { Progress } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<>
|
||
|
<Progress type="dashboard" percent={75} style={{ marginRight: 8 }} />
|
||
|
<Progress type="dashboard" percent={75} gapDegree={30} />
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
export default App;
|