I would like to add some icons to a bootstrap select like this:
What I've tried:
<select class="form-select" aria-label="Filter select">
<option data-icon="bi bi-funnel-fill" selected>Filter</option>
<option value="1">All</option>
<option value="2">Active</option>
<option value="3">Inactive</option>
</select>
I tried using data-icon
(as I have seen in some stackoverflow answers) but it did not work for me.
I wonder if for bootstrap 5 there is another way to get this result or if I did something wrong.
Any help is welcome.