My chips might contain very long strings, so I would like to limit the width of the chip, and show the full text in a Tooltip.
However when I try to change the maxWidth, it only ends up changing the width of the grey, pill-shaped part of the Chip -- the label continues to overflow, and the "delete" button also gets out of place and appears outside the chip.
I have tried using inline style={{}} prop, as well as trying the "withStyles" approach to create my own custom styled Chip, but both have the same effect.
I modified the Chip example from Material-UI docs to demonstrate the issue: https://codesandbox.io/s/material-demo-zt72h
Edit: If I also adjust the 'overflow' styling, it's almost there, but all I see is a truncated section from the middle of the string, no ellipsis, and the delete button has disappeared:
chip: {
maxWidth: 100,
whiteSpace: "nowrap",
overflow: "hidden",
textOverflow: "ellipsis"
}


