I'm trying to override the default mat-stepper icon, but it does not seem to work. I followed the documentation, but my icon is next to my label, instead of overwriting and staying in the blue circle.
I'm trying to override the default mat-stepper icon, but it does not seem to work. I followed the documentation, but my icon is next to my label, instead of overwriting and staying in the blue circle.
To stay in the circle just put it inside your <mat-horizontal-stepper>
like this:
<ng-template matStepperIcon="number">
<mat-icon>home</mat-icon>
</ng-template>