You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
771 B
29 lines
771 B
import { DownloadOutlined } from '@ant-design/icons';
|
|
import { Button, Tooltip } from 'antd';
|
|
import type { ButtonGroupProps } from 'antd/es/button';
|
|
import React from 'react';
|
|
|
|
const CustomGroup: React.FC<ButtonGroupProps> = (props) => (
|
|
<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>
|
|
);
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<CustomGroup size="small" />
|
|
<br />
|
|
<CustomGroup />
|
|
<br />
|
|
<CustomGroup size="large" />
|
|
</>
|
|
);
|
|
|
|
export default App;
|
|
|