import Icon from '@/components/icon' import { useTranslation } from '@/i18n.ts' import { currentUserAtom } from '@/store/user.ts' import { Avatar as AntAvatar, Dropdown, Spin } from 'antd' import { useAtomValue } from 'jotai' const Avatar = () => { const { t } = useTranslation() const { data, isLoading } = useAtomValue(currentUserAtom) return (