import React, { FC } from "react"; import { makeStyles, createStyles, Theme } from "@material-ui/core/styles"; import Avatar from "@material-ui/core/Avatar"; interface IProps { picture: string; alt: string; } const useStyles = makeStyles((theme: Theme) => createStyles({ root: { display: "flex", "& > *": { margin: theme.spacing(1) } }, small: { width: theme.spacing(3), height: theme.spacing(3) }, large: { width: theme.spacing(10), height: theme.spacing(10) } }) ); export const UserAvatar: FC = ({ picture, alt }) => { const classes = useStyles(); return (
); };