import Truncate from 'react-truncate-html'; <Truncate lines={3} dangerouslySetInnerHTML={{ __html: "Hi, <strong style='font-size:30px''>here’s some</strong> <i>HTML</i>" }} /> it will remove font-size from strong tag. could you please fix this
import Truncate from 'react-truncate-html';
<Truncate
lines={3}
dangerouslySetInnerHTML={{
__html: "Hi, <strong style='font-size:30px''>here’s some HTML"
}}
/>
it will remove font-size from strong tag. could you please fix this