import { Avatar, styled } from '@mui/material' import type React from 'react' export const PreviewAvatar: React.FC> = styled(Avatar)(({ theme }) => ({ background: theme.vars.palette.background.paper, width: 96, height: 96, borderRadius: theme.vars.shape.borderRadius, }))