1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-19 17:52:45 +02:00
unleash.unleash/frontend/src/component/changeRequest/ChangeRequestOverview/ChangeRequestComments/StyledAvatar.tsx
2022-12-08 10:59:37 +01:00

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),
}));