How can i use material icons in multiple selects?
<i class="material-icons">check</i> for example.
When i try to set in options
iconBase: 'material-icons',
tickIcon: 'check',
it's render
<span class="material-icons check check-mark"></span>.
But material icon must be <i class="material-icons">check</i>
Bootstrap-select doesn't support ligatures. You'll either need to create a custom stylesheet for the font or a different Material icon font.
e.g.
```css
.check:after {
content: 'check';
}
Most helpful comment
Bootstrap-select doesn't support ligatures. You'll either need to create a custom stylesheet for the font or a different Material icon font.
e.g.
```css
.check:after {
content: 'check';
}