mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 05:05:48 +08:00
2cdf586291
* chore: fix lint * chore: fix lint * test: fix 16 * fix: lint
24 lines
534 B
TypeScript
24 lines
534 B
TypeScript
import React from 'react';
|
|
import { FileTextOutlined } from '@ant-design/icons';
|
|
import { FloatButton } from 'antd';
|
|
|
|
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;
|