UNPKG

@hardikdabhi/ngx-spinner

Version:

Customizable loading spinner for Angular (version ng 5 and above)

18 lines (13 loc) 403 B
import { Component, OnInit } from '@angular/core'; import { ISpinnerAnimation, ISpinnerConfig } from '../ngx-spinner.types'; @Component({ selector: 'app-plate-rotate', templateUrl: './plate-rotate.component.html', styleUrls: ['./plate-rotate.component.scss'] }) export class PlateRotateComponent implements ISpinnerAnimation { config: ISpinnerConfig; constructor() { } ngOnInit() { } }