import React from 'react' import { Typography, IconButton } from '@mui/material' import AccountCircle from '@mui/icons-material/AccountCircle' const Username = (props: any) => { return ( {props.avatarContent ? ( user-avatar ) : ( )} {props.username} ) } export default Username