I have a pretty simple problem; limit the number of lines. Of a long text, I don't want to show more than 3 lines. I tried the following but doesn't work:
<Typography
sx={{
overflow: 'hidden',
textOverflow: 'ellipsis',
WebkitLineClamp: 3,
WebkitBoxOrient: 'vertical',
}}
variant="body1">
{longText}
</Typography>