I know the standard HTML for how to set line-height <br style="line-height: 200%;">
in the <br>
tag, but in the react JSX elements, I am not sure how to set it.
Below is the code I've tried, but it doesn't increase the height. I want actual results that can increase the height of the element.
<>
<br style={{lineHeight: 60}} />
</>
Hope someone can guide me on how to solve it. Thank you.
``` usually styles in JSX follow this pattern ```attribute:"value"``` – nima Dec 17 '22 at 12:42
```