blob: e50c383d4d68d75d62701d5f04d29ce786333e37 [file] [log] [blame]
Adrien Béraud88a52442021-04-26 12:11:41 -04001import React from 'react'
Adrien Béraudab519ff2022-05-03 15:34:48 -04002import { Avatar } from '@mui/material'
3import { PersonRounded } from '@mui/icons-material'
Adrien Béraud150b4782021-04-21 19:40:59 -04004
5export default function ConversationAvatar(props) {
Adrien Béraud88a52442021-04-26 12:11:41 -04006 return <Avatar>
7 {props.displayName ? props.displayName[0].toUpperCase() : <PersonRounded />}
8 </Avatar>
Adrien Béraud150b4782021-04-21 19:40:59 -04009}