mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-07-23 04:12:13 +00:00
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com> Co-authored-by: 谨欣 <echo.cmy@antgroup.com> Co-authored-by: 严志勇 <yanzhiyong@tiansuixiansheng.com> Co-authored-by: yanzhiyong <932374019@qq.com>
13 lines
415 B
TypeScript
13 lines
415 B
TypeScript
import { ReadOutlined, SmileOutlined } from '@ant-design/icons';
|
|
import { FloatButton } from 'antd';
|
|
import React from 'react';
|
|
|
|
const FloatHelper: React.FC = () => {
|
|
return (
|
|
<FloatButton.Group trigger='hover' icon={<SmileOutlined />}>
|
|
<FloatButton icon={<ReadOutlined />} href='http://docs.dbgpt.cn' target='_blank' tooltip='Doucuments' />
|
|
</FloatButton.Group>
|
|
);
|
|
};
|
|
export default FloatHelper;
|