@hardikdabhi/ngx-spinner
Version:
Customizable loading spinner for Angular (version ng 5 and above)
18 lines (13 loc) • 380 B
text/typescript
import { Component, OnInit } from '@angular/core';
import { ISpinnerAnimation, ISpinnerConfig } from '../ngx-spinner.types';
({
selector: 'spinner-blink',
templateUrl: './blink.component.html',
styleUrls: ['./blink.component.scss']
})
export class BlinkComponent implements ISpinnerAnimation {
config: ISpinnerConfig;
constructor() { }
ngOnInit() {
}
}