I am using action-bootstrap and trying to add an icon to NavBar
<Navbar.Header>
<Navbar.Brand>
<a href="#">☰ React-Bootstrap
<img src={logo} style={{width:100, marginTop: -7}} />
</a>
</Navbar.Brand>
<Navbar.Toggle />
</Navbar.Header>
However, the icon is incorrect in the navigation bar.

And from the official site I can’t find an example of adding an icon to the navigation bar.
thank
source
share