mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
30f7dcc107
* docs: update demo use Space * update snap
15 lines
351 B
TypeScript
15 lines
351 B
TypeScript
import React from 'react';
|
|
import { Progress, Space } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<Progress strokeLinecap="butt" percent={75} />
|
|
<Space wrap>
|
|
<Progress strokeLinecap="butt" type="circle" percent={75} />
|
|
<Progress strokeLinecap="butt" type="dashboard" percent={75} />
|
|
</Space>
|
|
</>
|
|
);
|
|
|
|
export default App;
|