import type { Account } from '@lifi/wallet-management' import { getConnectorIcon } from '@lifi/wallet-management' import Wallet from '@mui/icons-material/Wallet' import { Badge } from '@mui/material' import { useChain } from '../../hooks/useChain.js' import type { ToAddress } from '../../types/widget.js' import { AvatarDefault, AvatarMasked } from './Avatar.style.js' import { ChainBadgeContent } from './ChainBadgeContent.js' interface AccountAvatarProps { chainId?: number account?: Account toAddress?: ToAddress empty?: boolean } export const AccountAvatar = ({ chainId, account, empty, toAddress, }: AccountAvatarProps) => { const { chain } = useChain(chainId) const avatar = empty ? ( ) : account?.connector || toAddress?.logoURI ? ( {(toAddress?.name || account?.connector?.name)?.[0]} ) : ( ) return ( } > {avatar} ) }