Currently working with React-Bootstrap to create a Navbar. I have a desire to swap out the default hamburger menu icon provided by React-Bootstrap with a Font Awesome hamburger icon.
Wondering what steps need to be taken in order to change the existing built-in hamburger menu? Below is my current Navbar setup:
<Navbar expand="lg">
<Navbar.Brand href="#home">
<FontAwesomeIcon icon="gem" color="#20FC8F" size="2x" />
</Navbar.Brand>
<Navbar.Toggle aria-controls="basic-navbar-nav"/>
<Navbar.Collapse id="basic-navbar-nav">
<Nav className="mr-auto">
<Nav.Link href="#home">Home</Nav.Link>
<Nav.Link href="#link">Link</Nav.Link>
</Nav>
</Navbar.Collapse>
</Navbar>
I have imported the Font Awesome hamburger icon that I wish to use and it is rendered as follows:
<FontAwesomeIcon icon="bars" color="#20FC8F" size="2x" />;
Can anyone guide me on how to integrate this Font Awesome icon in place of the React-Bootstrap toggler?