UNPKG

@hardikdabhi/ngx-spinner

Version:

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

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