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.
28 lines
681 B
28 lines
681 B
import React from 'react';
|
|
import { FloatButton } from 'antd';
|
|
import { CustomerServiceOutlined, CommentOutlined } from '@ant-design/icons';
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<FloatButton.Group
|
|
trigger="click"
|
|
type="primary"
|
|
style={{ right: 24 }}
|
|
icon={<CustomerServiceOutlined />}
|
|
>
|
|
<FloatButton />
|
|
<FloatButton icon={<CommentOutlined />} />
|
|
</FloatButton.Group>
|
|
<FloatButton.Group
|
|
trigger="hover"
|
|
type="primary"
|
|
style={{ right: 94 }}
|
|
icon={<CustomerServiceOutlined />}
|
|
>
|
|
<FloatButton />
|
|
<FloatButton icon={<CommentOutlined />} />
|
|
</FloatButton.Group>
|
|
</>
|
|
);
|
|
|
|
export default App;
|
|
|