My workaround was to wrap is with a div with title, but it would be great to have an option to this.
import LinesEllipsis from 'react-lines-ellipsis'
<div title="long long text">
<LinesEllipsis
text='long long text'
maxLine='3'
ellipsis='...'
trimRight
basedOn='letters'
/>
</div>
Like this:
import LinesEllipsis from 'react-lines-ellipsis'
<LinesEllipsis
text='long long text'
maxLine='3'
ellipsis='...'
trimRight
basedOn='letters'
insertTitle
/>
My workaround was to wrap is with a div with title, but it would be great to have an option to this.
Like this: