After experimenting with inline styling, I attempted to move the images next to the text in a specific column. However, there are some rows where the images overlap or the text is positioned too far to the right, as shown in this image:
https://i.stack.imgur.com/QddSC.png
<TableCell align="right" > <Avatar src={n.image} style={{width: 25, height: 25, position: 'absolute' }}/> <span style={{color: '#0066ff', cursor: 'pointer' }} >{n.name}</span> </TableCell>
Could someone provide guidance on how to properly align the image to the left of the text and address these spacing and overlapping issues? Thank you.