mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 23:35:38 +08:00
15 lines
396 B
TypeScript
15 lines
396 B
TypeScript
import React from 'react';
|
|
import { Flex, Progress } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<Flex vertical gap="small">
|
|
<Progress strokeLinecap="butt" percent={75} />
|
|
<Flex wrap="wrap" gap="small">
|
|
<Progress strokeLinecap="butt" type="circle" percent={75} />
|
|
<Progress strokeLinecap="butt" type="dashboard" percent={75} />
|
|
</Flex>
|
|
</Flex>
|
|
);
|
|
|
|
export default App;
|