I have referenced then declared an icon
face
But how can I change the icon size?
On of
if you are using scss
scss
@mixin md-icon-size($size: 24px) { font-size: $size; height: $size; width: $size; } .md-icon-16 { @include md-icon-size(16px); } .md-icon-18 { @include md-icon-size(18px); } .md-icon-24 { @include md-icon-size(24px); } .md-icon-36 { @include md-icon-size(36px); }