Skip to content

Commit b71cd7b

Browse files
authored
Update CollaboratorAvatarGroup.tsx
Signed-off-by: Mia Grenell <[email protected]>
1 parent 056572b commit b71cd7b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/custom/CollaboratorAvatarGroup/CollaboratorAvatarGroup.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { ExpandMore } from '@mui/icons-material';
22
import { MouseEvent, useState } from 'react';
3-
import { Avatar, AvatarGroup, Button, Popover, Typography } from '../../base';
3+
import { Avatar, AvatarGroup, Button, Popover, Typography, Divider } from '../../base';
44
import { iconSmall } from '../../constants/iconsSizes';
55
import { styled, useTheme } from '../../theme';
66
import { DARK_TEAL_BLUE } from '../../theme/colors/colors';
@@ -146,7 +146,8 @@ const CollaboratorAvatarGroup = ({
146146
key={clientID}
147147
title={
148148
<div style={{ display: 'flex', justifyContent: 'center', flexDirection: 'column' }}>
149-
<Typography style={{ display: 'flex', justifyContent: 'center', flexDirection: 'column', fontSize: '1rem' }}>{user.name}</Typography>
149+
<Divider />
150+
<Typography style={{ display: 'flex', justifyContent: 'center', flexDirection: 'column', margin: 'auto', fontSize: '1rem' }}>{user.name}</Typography>
150151
<Button
151152
size="small"
152153
variant="outlined"

0 commit comments

Comments
 (0)