I have recently updated an older React application from blueprintjs version 1 to version 4 by following the documentation. However, I am now facing an issue where the icons are not displaying correctly as shown in the image below.
Could someone please point out what might be going wrong?
<div className="hg-RightMenu hg-toolbar">
<ul className="hg-RightMenu__list">
<li className="hg-RightMenu__list__item">
<SidebarToggle icon="bp4-icon-user" tooltip="User Profile" name="PROFILE" />
<div className="hg-badge">{messagesCount}</div>
</li>
<li className="hg-RightMenu__list__item">
<SidebarToggle icon="bp4-icon-history" tooltip="Recent Searches" name="SEARCH_HISTORY" />
</li>
<li className="hg-RightMenu__list__item">
<SidebarToggle icon="bp4-icon-floppy-disk" tooltip="Saved Searches" name="SAVED_SEARCHES" />
</li>
</ul>
</div>