Open CChisuwo opened 2 years ago
The icon
prop won't accept a pack name, it needs to have a string for a particular icon, and each item can have a different icon that way. Basic example:
navItems=[
dict(label='test 1', value='val1', icon='1'),
dict(label='test 2', value='val2', icon='2'),
]),
I am trying to implement a bottom navigation for a mobile first dash web app. I am however unable to add icons to each of the navigation items even after adding an
icon="css_icon_pack_name"
to thenavitem
dict
. Any advice would be very helpful thanks