antd tooltip width react jss
.ant-tooltip-inner {
color: yellow;
background-color: green;
width: 200px;
}
// for React-JSS
<ToolTip overlayClassName="toolTipOverlay" {...props} >Content</ToolTip>
JSS style Object = {
toolTipOverlay: {
'& .ant-tooltip-inner': {
width: 'max-content';
}
}
}