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.
24 lines
534 B
24 lines
534 B
2 years ago
|
import React from 'react';
|
||
|
import { FloatButton } from 'antd';
|
||
|
import { FileTextOutlined } from '@ant-design/icons';
|
||
|
|
||
|
const App: React.FC = () => (
|
||
|
<>
|
||
|
<FloatButton
|
||
|
icon={<FileTextOutlined />}
|
||
|
description="HELP INFO"
|
||
|
shape="square"
|
||
|
style={{ right: 24 }}
|
||
|
/>
|
||
|
<FloatButton description="HELP INFO" shape="square" style={{ right: 94 }} />
|
||
|
<FloatButton
|
||
|
icon={<FileTextOutlined />}
|
||
|
description="HELP"
|
||
|
shape="square"
|
||
|
style={{ right: 164 }}
|
||
|
/>
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
export default App;
|