mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 22:39:34 +08:00
2cdf586291
* chore: fix lint * chore: fix lint * test: fix 16 * fix: lint
22 lines
679 B
TypeScript
22 lines
679 B
TypeScript
import React from 'react';
|
|
import { QuestionCircleOutlined, SyncOutlined } from '@ant-design/icons';
|
|
import { FloatButton } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<FloatButton.Group shape="circle" style={{ right: 24 }}>
|
|
<FloatButton icon={<QuestionCircleOutlined />} />
|
|
<FloatButton />
|
|
<FloatButton.BackTop visibilityHeight={0} />
|
|
</FloatButton.Group>
|
|
<FloatButton.Group shape="square" style={{ right: 94 }}>
|
|
<FloatButton icon={<QuestionCircleOutlined />} />
|
|
<FloatButton />
|
|
<FloatButton icon={<SyncOutlined />} />
|
|
<FloatButton.BackTop visibilityHeight={0} />
|
|
</FloatButton.Group>
|
|
</>
|
|
);
|
|
|
|
export default App;
|