-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
134 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
import * as React from 'react'; | ||
import Avatar from '@mui/joy/Avatar'; | ||
import Box from '@mui/joy/Box'; | ||
import Sheet from '@mui/joy/Sheet'; | ||
import Stack from '@mui/joy/Stack'; | ||
import { styled } from '@mui/joy/styles'; | ||
import Typography from '@mui/joy/Typography'; | ||
|
||
const Item = styled(Sheet)(({ theme }) => ({ | ||
...theme.typography.body2, | ||
padding: theme.spacing(1), | ||
textAlign: 'center', | ||
color: theme.vars.palette.text.tertiary, | ||
maxWidth: '400px', | ||
})); | ||
|
||
const message = `Truncation should be conditionally applicable on this long line of text | ||
as this is a much longer line than what the container can support. `; | ||
|
||
export default function ZeroWidthStack() { | ||
return ( | ||
<Box sx={{ flexGrow: 1, overflow: 'hidden', px: 3 }}> | ||
<Item | ||
sx={{ | ||
my: 1, | ||
mx: 'auto', | ||
p: 2, | ||
}} | ||
> | ||
<Stack spacing={2} direction="row" alignItems="center"> | ||
<Stack> | ||
<Avatar>W</Avatar> | ||
</Stack> | ||
<Stack> | ||
<Typography noWrap>{message}</Typography> | ||
</Stack> | ||
</Stack> | ||
</Item> | ||
<Item | ||
sx={{ | ||
my: 1, | ||
mx: 'auto', | ||
p: 2, | ||
}} | ||
> | ||
<Stack spacing={2} direction="row" alignItems="center"> | ||
<Stack> | ||
<Avatar>W</Avatar> | ||
</Stack> | ||
<Stack sx={{ minWidth: 0 }}> | ||
<Typography noWrap>{message}</Typography> | ||
</Stack> | ||
</Stack> | ||
</Item> | ||
</Box> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
import * as React from 'react'; | ||
import Avatar from '@mui/joy/Avatar'; | ||
import Box from '@mui/joy/Box'; | ||
import Sheet from '@mui/joy/Sheet'; | ||
import Stack from '@mui/joy/Stack'; | ||
import { styled } from '@mui/joy/styles'; | ||
import Typography from '@mui/joy/Typography'; | ||
|
||
const Item = styled(Sheet)(({ theme }) => ({ | ||
...theme.typography.body2, | ||
padding: theme.spacing(1), | ||
textAlign: 'center', | ||
color: theme.vars.palette.text.tertiary, | ||
maxWidth: '400px', | ||
})); | ||
|
||
const message = `Truncation should be conditionally applicable on this long line of text | ||
as this is a much longer line than what the container can support. `; | ||
|
||
export default function ZeroWidthStack() { | ||
return ( | ||
<Box sx={{ flexGrow: 1, overflow: 'hidden', px: 3 }}> | ||
<Item | ||
sx={{ | ||
my: 1, | ||
mx: 'auto', | ||
p: 2, | ||
}} | ||
> | ||
<Stack spacing={2} direction="row" alignItems="center"> | ||
<Stack> | ||
<Avatar>W</Avatar> | ||
</Stack> | ||
<Stack> | ||
<Typography noWrap>{message}</Typography> | ||
</Stack> | ||
</Stack> | ||
</Item> | ||
<Item | ||
sx={{ | ||
my: 1, | ||
mx: 'auto', | ||
p: 2, | ||
}} | ||
> | ||
<Stack spacing={2} direction="row" alignItems="center"> | ||
<Stack> | ||
<Avatar>W</Avatar> | ||
</Stack> | ||
<Stack sx={{ minWidth: 0 }}> | ||
<Typography noWrap>{message}</Typography> | ||
</Stack> | ||
</Stack> | ||
</Item> | ||
</Box> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters