blob: b9160a16014223120f56e57f2cced0d5b4bf324d [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>
}