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