···108108const numberOfLinesClippingFix = {
109109 overflowY: 'visible',
110110 overflowX: 'clip',
111111+ // mimic browser default behavior of `min-width: 0` on `overflow: hidden`
112112+ // elements to allow text to shrink smaller than its intrinsic width when
113113+ // necessary
114114+ minWidth: 0,
111115 // this is neater and supports vertical writing modes, but it's only baseline newly available
112116 // overflowInline: 'clip',
113117} satisfies React.CSSProperties as TextStyleProp