mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-21 16:33:27 +08:00
13 lines
374 B
TypeScript
13 lines
374 B
TypeScript
|
import React from 'react';
|
||
|
import { FloatButton } from 'antd';
|
||
|
import { CustomerServiceOutlined, CommentOutlined } from '@ant-design/icons';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<FloatButton.Group icon={<CustomerServiceOutlined />} type="primary" trigger="click">
|
||
|
<FloatButton />
|
||
|
<FloatButton icon={<CommentOutlined />} />
|
||
|
</FloatButton.Group>
|
||
|
);
|
||
|
|
||
|
export default App;
|