blob: b9160a16014223120f56e57f2cced0d5b4bf324d [file] [log] [blame]
Adrien BĂ©raud150b4782021-04-21 19:40:59 -04001import React from 'react';
2import { Avatar } from '@material-ui/core';
3import { PersonRounded } from '@material-ui/icons'
4
5export default function ConversationAvatar(props) {
6 return <Avatar>{props.displayName ? props.displayName[0].toUpperCase() : <PersonRounded />}</Avatar>
7}