mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-19 17:52:45 +02:00
9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
import { Avatar, styled } from '@mui/material';
|
|
|
|
export const StyledAvatar = styled(Avatar)(({ theme }) => ({
|
|
height: '32px',
|
|
width: '32px',
|
|
marginTop: theme.spacing(1),
|
|
marginRight: theme.spacing(2),
|
|
}));
|