16 lines
312 B
JavaScript
16 lines
312 B
JavaScript
|
|
import Avatar from '@mui/material/Avatar';
|
||
|
|
|
||
|
|
export function renderAvatar(params) {
|
||
|
|
if (params.value == null) {
|
||
|
|
return '';
|
||
|
|
}
|
||
|
|
|
||
|
|
return (
|
||
|
|
<Avatar style={{ backgroundColor: params.value.color }}>
|
||
|
|
{params.value.name.toUpperCase().substring(0, 1)}
|
||
|
|
</Avatar>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
export default renderAvatar;
|