mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-03 04:30:06 +08:00
32 lines
795 B
TypeScript
32 lines
795 B
TypeScript
|
import React from 'react';
|
||
|
import { DownloadOutlined } from '@ant-design/icons';
|
||
|
import { Button, Tooltip } from 'antd';
|
||
|
import type { ButtonGroupProps } from 'antd/es/button';
|
||
|
|
||
|
const getGroup = (props?: ButtonGroupProps) => (
|
||
|
<div>
|
||
|
<Button.Group {...props}>
|
||
|
<Button type="primary">Button 1</Button>
|
||
|
<Button type="primary">Button 2</Button>
|
||
|
<Tooltip title="Tooltip">
|
||
|
<Button type="primary" icon={<DownloadOutlined />} disabled />
|
||
|
</Tooltip>
|
||
|
<Tooltip title="Tooltip">
|
||
|
<Button type="primary" icon={<DownloadOutlined />} />
|
||
|
</Tooltip>
|
||
|
</Button.Group>
|
||
|
</div>
|
||
|
);
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<>
|
||
|
{getGroup({ size: 'small' })}
|
||
|
<br />
|
||
|
{getGroup()}
|
||
|
<br />
|
||
|
{getGroup({ size: 'large' })}
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
export default App;
|