Previously in Bootstrap 3, changing the dropdown icon was straightforward by adjusting the span and inserting the desired icon. However, it appears to be a bit trickier with Bootstrap 4. Am I overlooking something?
Regardless, here is the basic code snippet:
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Dropdown button
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</div>
I'm looking for guidance on changing the dropdown icon using fontawesome. Is this possible? If so, how can it be accomplished?