I am using ionic, angular 8, and @angular/material/stepper
I have styling already applied to the ion-button tag (provided by a purchased component library). I would like to use this stying with for the next button within the map-stepper.
However if I switch the (working) button from
<button mat-button margin-top matStepperNext shape="round" button-round fill="outline">{{config.nextButton}}</button>
to
<ion-button mat-button margin-top matStepperNext shape="round" button-round fill="outline">{{config.nextButton}}</ion-button>
The no longer functions to advance the stepper. Is there a simple way to apply the matStepperNext directive to the ion-button tag?