Right now I can add a button like
<button mat-stroked-button>
<mat-icon>check_circle</mat-icon>
</button>
By doing so, the icon is NOT centered. I’m aware of answers which apply some class and manually adjust the margins pixel wise. This might have influence on future Material upgrades and I don’t want to adjust them for each upgrade.
Reading the documentation I find mat-icon-button
– which has no outline. Or mat-mini-fab
which has a complete different appearance.
I’ve checked the Material V2 and V3 guidelines but there is no outlined icon button available.
- Does this mean I need to create it by my own?
- Is this combination missed by intent or occasionally?