mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-15 01:11:26 +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;
|