jossef / material-design-icons-iconfont

Material Design icons + Development Experience
https://jossef.github.io/material-design-icons-iconfont
Apache License 2.0
455 stars 58 forks source link

material-icon mixin doesn't work with mdc-icon-button #50

Closed BognerBogdanoff closed 2 years ago

BognerBogdanoff commented 4 years ago

When I try to use the material-icon mixin for any icon on a button with class mdc-icon-button, they show up blank. It's working for my other elements that aren't an mdc-icon-button.

HTML

<button class="options-icon-vertical mdc-icon-button"></button>

SCSS

.options-icon-vertical{
     @extend .material-icons;
     @include material-icon('more_vert');
}