I have a Div element with input and FontIcons as child elements. When I enter or update any value in the input controller and moves the focus out of that, onBlur event is called. Here, I also have a click handle on font icon and it is not working as expected.
When I update the input element and click on FantoIcon, Only blur event is triggered but not click event.
How can we trigger click instead of blur event? I tried keeping zIndext but no luck
<div>
<input onBlur={this.onBlurHandler}>
<FontIcon onClick ={this.clickHandle}>
</div>
