mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-16 18:09:22 +08:00
2e4b9cb098
* site: use CSS logical properties * Update components/anchor/demo/targetOffset.tsx Co-authored-by: afc163 <afc163@gmail.com> Signed-off-by: lijianan <574980606@qq.com> * fix: fix * fix: fix * chore: fix * fix: add more * fix: add more * site: rewrite with CSS logical properties --------- Signed-off-by: lijianan <574980606@qq.com> Co-authored-by: afc163 <afc163@gmail.com>
22 lines
697 B
TypeScript
22 lines
697 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={{ insetInlineEnd: 24 }}>
|
|
<FloatButton icon={<QuestionCircleOutlined />} />
|
|
<FloatButton />
|
|
<FloatButton.BackTop visibilityHeight={0} />
|
|
</FloatButton.Group>
|
|
<FloatButton.Group shape="square" style={{ insetInlineEnd: 94 }}>
|
|
<FloatButton icon={<QuestionCircleOutlined />} />
|
|
<FloatButton />
|
|
<FloatButton icon={<SyncOutlined />} />
|
|
<FloatButton.BackTop visibilityHeight={0} />
|
|
</FloatButton.Group>
|
|
</>
|
|
);
|
|
|
|
export default App;
|