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['body-sm'], padding: theme.spacing(1), textAlign: 'center', borderRadius: 4, color: theme.vars.palette.text.secondary, maxWidth: 400, })); 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 ( W {message} W {message} ); }