import { ReactComponent as MoonIcon } from '@/assets/svg/moon.svg'; import { ReactComponent as TranslationIcon } from '@/assets/svg/translation.svg'; import { BellOutlined, GithubOutlined } from '@ant-design/icons'; import { Space } from 'antd'; import React from 'react'; import User from '../user'; import styled from './index.less'; const Circle = ({ children }: React.PropsWithChildren) => { return
{children}
; }; const handleGithubCLick = () => { window.open('https://github.com/infiniflow/infinity', 'target'); }; const RightToolBar = () => { return (
); }; export default RightToolBar;