Can set member photo

This commit is contained in:
2023-08-10 12:10:09 +02:00
parent 10e8f339cc
commit d1e55d574e
12 changed files with 450 additions and 35 deletions

View File

@ -0,0 +1,15 @@
import { Avatar } from "@mui/material";
import { Member } from "../api/MemberApi";
export function MemberPhoto(p: {
member: Member;
width: number;
}): React.ReactElement {
return (
<Avatar
sx={{ width: `${p.width}px`, height: "auto", display: "inline-block" }}
variant="rounded"
src={p.member.photoURL}
/>
);
}