import { ConnectButton } from '@rainbow-me/rainbowkit' import Box from 'components/primitives/Box' import Button from 'components/primitives/Button' import { FC } from 'react' type Props = {} export const ConnectWalletButton: FC = () => { return ( {({ account, chain, openConnectModal, mounted }) => { return ( {(() => { if (!mounted || !account || !chain) { return ( ) } })()} ) }} ) }