I am new to the web. Here I have the following code
<Tooltip title={buyingSessionName} placement="top">
<Typography className={styles.bgSessionName} variant="body2">
{buyingSessionName}
</Typography>
</Tooltip>
Now, I want to wrap the text if it is more than two lines, then I want to wrap that text and show ellipsis.
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
But here it is getting for the single line only. I want to do it if it changes to 2 lines.
thanks.