mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 03:59:01 +08:00
50 lines
1.7 KiB
TypeScript
50 lines
1.7 KiB
TypeScript
import React, { useState } from 'react';
|
|
import { DownloadOutlined } from '@ant-design/icons';
|
|
import { Button, Divider, Flex, Radio } from 'antd';
|
|
import type { ConfigProviderProps } from 'antd';
|
|
|
|
type SizeType = ConfigProviderProps['componentSize'];
|
|
|
|
const App: React.FC = () => {
|
|
const [size, setSize] = useState<SizeType>('large'); // default is 'middle'
|
|
return (
|
|
<>
|
|
<Radio.Group value={size} onChange={(e) => setSize(e.target.value)}>
|
|
<Radio.Button value="large">Large</Radio.Button>
|
|
<Radio.Button value="default">Default</Radio.Button>
|
|
<Radio.Button value="small">Small</Radio.Button>
|
|
</Radio.Group>
|
|
<Divider orientation="left" plain>
|
|
Preview
|
|
</Divider>
|
|
<Flex gap="small" align="flex-start" vertical>
|
|
<Flex gap="small" wrap>
|
|
<Button type="primary" size={size}>
|
|
Primary
|
|
</Button>
|
|
<Button size={size}>Default</Button>
|
|
<Button type="dashed" size={size}>
|
|
Dashed
|
|
</Button>
|
|
</Flex>
|
|
<Button type="link" size={size}>
|
|
Link
|
|
</Button>
|
|
<Flex gap="small" wrap>
|
|
<Button type="primary" icon={<DownloadOutlined />} size={size} />
|
|
<Button type="primary" shape="circle" icon={<DownloadOutlined />} size={size} />
|
|
<Button type="primary" shape="round" icon={<DownloadOutlined />} size={size} />
|
|
<Button type="primary" shape="round" icon={<DownloadOutlined />} size={size}>
|
|
Download
|
|
</Button>
|
|
<Button type="primary" icon={<DownloadOutlined />} size={size}>
|
|
Download
|
|
</Button>
|
|
</Flex>
|
|
</Flex>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default App;
|