I noticed that the icon appears if there is no blank label. A possible solution is to remove all text from the label and put it as a css property using "after", for example:
HTML
<label></label> <input>
CSS
label:before { content: 'some text for label'; }
source share