import React from 'react' import { Box, Typography } from '@mui/material' import { ElipsSVG } from '@/app/icons/ElipsSVG' import { trimAddress } from '@/app/utils' import { useWalletContext } from '@/app/context/wallet' export const WalletAddress = () => { const { address } = useWalletContext() const displayAddress = trimAddress(address, 7) return ( {displayAddress} ) }