import { InformationCircle } from '@/components/HeroIcons' import SlideOvers from './SlideOvers' import { useRef } from 'react' /** * 显示网站用户信息按钮 * @returns */ export default function InformationButton() { const slideOversRef = useRef({}) const toggleCollapsed = () => { slideOversRef.current.toggleSlideOvers() } return <>
}