angular/material2 mat-spinner resize

With the latest update you should use the diameter property:

<mat-spinner [diameter]="70"></mat-spinner>

The diameter represents the amount of pixels for both the width and the height of the spinner. In this case it has a size of 70×70 pixels.

See the following stackblitz example:

Leave a Comment