Angular 5 Material Spinner is not working
app.module.ts
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
@NgModule({
imports: [
MatProgressSpinnerModule
]})
component.ts
import { MatSpinner } from '@angular/material';
component.html
<mat-spinner></mat-spinner>
am I missing any configuration.?
In Reference, it's generating an SVG file for Spinner but I don't see anything inside mat-spinner tag.
I tried to fork the mat-spinner example given and that works perfectly. The only difference that I could see is the way you import the progress spinner module instead of importing it from a specific path do this:
import { MatProgressSpinnerModule } from '@angular/material';
You don`t need to import anything inside your component as mat-spinner extends matprogressSpinner.
Inside the relevant html just do what you were doing i.e.
<mat-spinner></mat-spinner>
You can have a look at this: https://stackblitz.com/angular/eymjpelkpro which might give you some more context.