blob: 601fcf6236b2af4485452fa8dc96649bbe7d585a [file] [log] [blame]
import React from 'react'
import { Avatar } from '@material-ui/core'
import { PersonRounded } from '@material-ui/icons'
export default function ConversationAvatar(props) {
return <Avatar>
{props.displayName ? props.displayName[0].toUpperCase() : <PersonRounded />}
</Avatar>
}