Hello,
When I execute this code, no icon is showing…
from dash import Dash, html
import dash_bootstrap_components as dbc
app = Dash(external_stylesheets=[dbc.themes.BOOTSTRAP, dbc.icons.BOOTSTRAP])
app.layout = [html.H4(children=[html.I(className="bi bi-stars"), "Hello world!"])]
app.run_server(debug=True, port=8050)
What’s the problem?