The <Chip /> could receive a maxLength property that truncates with ellipsis
<Chip label='My Very Long text that needs to truncate' maxLength={2} />
Renders My...
Avoids writing string truncate functions outside of this component.
@felipesilvati The best solution approach current is to apply a max-width CSS property on the chip: https://github.com/mui-org/material-ui/pull/18708
Duplicate of #18587
e.g.
<Chip style={{ maxWidth: 100 }} />

It is very good,
But it would be nice if we could add a title@oliviertassinari How do we add the html title attribute to a chip?
ie:
<Chip title={chipTitle} />as<div title='allText'>your text</div>
Nice! It already exists, thanks!

Most helpful comment
@felipesilvati The best solution approach current is to apply a
max-widthCSS property on the chip: https://github.com/mui-org/material-ui/pull/18708Duplicate of #18587
e.g.