import WalletIcon from '@components/icons/WalletIcon' import { useEnhancedWallet } from '@components/wallet/EnhancedWalletProvider' import { LinkIcon } from '@heroicons/react/20/solid' import mangoStore from '@store/mangoStore' import { useTranslation } from 'next-i18next' import Button from './Button' const ConnectEmptyState = ({ text }: { text: string }) => { const { t } = useTranslation('common') const { handleConnect } = useEnhancedWallet() const groupLoaded = mangoStore((s) => s.groupLoaded) return (

{text}

) } export default ConnectEmptyState