I wonder if it is possible to use font-awesome icons in a label (in addition to a text) for dcc.Tab component. I have managed to use it for buttons, like this:
html.Button(['Submit', html.I(className="fas fa-calculator")], id='submit-button')
but it does not work when I do something similar in dcc.Tab:
dcc.Tab(label=['Results', html.I(className="fas fa-chart-bar")])
Does anybody have a solution for that?