mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-18 03:14:07 +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>
25 lines
851 B
TypeScript
25 lines
851 B
TypeScript
import React from 'react';
|
|
import { QuestionCircleOutlined } from '@ant-design/icons';
|
|
import { FloatButton } from 'antd';
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<FloatButton shape="circle" style={{ insetInlineEnd: 24 + 70 + 70 }} badge={{ dot: true }} />
|
|
<FloatButton.Group shape="circle" style={{ insetInlineEnd: 24 + 70 }}>
|
|
<FloatButton
|
|
href="https://ant.design/index-cn"
|
|
tooltip={<div>custom badge color</div>}
|
|
badge={{ count: 5, color: 'blue' }}
|
|
/>
|
|
<FloatButton badge={{ count: 5 }} />
|
|
</FloatButton.Group>
|
|
<FloatButton.Group shape="circle">
|
|
<FloatButton badge={{ count: 12 }} icon={<QuestionCircleOutlined />} />
|
|
<FloatButton badge={{ count: 123, overflowCount: 999 }} />
|
|
<FloatButton.BackTop visibilityHeight={0} />
|
|
</FloatButton.Group>
|
|
</>
|
|
);
|
|
|
|
export default App;
|