Radio Button not working

Hi,
I am adding Radio item in a row but it does not show in the app.

dbc.Row([
dbc.Col([
html.H6(children=[‘Bird Eye View’]),
], width = 2),
dbc.Col([
dcc.RadioItems(
id=‘radio-birdeye’,
options=[
{‘label’: ‘No’, ‘value’: False},
{‘label’: ‘Yes’, ‘value’: True},
],
value=False
),
], width = 3)

Capture

::after is showing instead