16 lines
504 B
Plaintext
16 lines
504 B
Plaintext
|
|
<Item variant="outlined" sx={{ my: 1, mx: 'auto', p: 2 }}>
|
||
|
|
<Stack spacing={2} direction="row" sx={{ alignItems: 'center' }}>
|
||
|
|
<Avatar>W</Avatar>
|
||
|
|
<Typography noWrap>{message}</Typography>
|
||
|
|
</Stack>
|
||
|
|
</Item>
|
||
|
|
<Item variant="outlined" sx={{ my: 1, mx: 'auto', p: 2 }}>
|
||
|
|
<Stack spacing={2} direction="row" sx={{ alignItems: 'center' }}>
|
||
|
|
<Stack>
|
||
|
|
<Avatar>W</Avatar>
|
||
|
|
</Stack>
|
||
|
|
<Stack sx={{ minWidth: 0 }}>
|
||
|
|
<Typography noWrap>{message}</Typography>
|
||
|
|
</Stack>
|
||
|
|
</Stack>
|
||
|
|
</Item>
|