Forked from
matefun / Frontend
196 commits behind the upstream repository.
stat.component.ts 498 B
import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';
@Component({
selector: 'app-stat',
templateUrl: './stat.component.html',
styleUrls: ['./stat.component.scss']
})
export class StatComponent implements OnInit {
@Input() bgClass: string;
@Input() icon: string;
@Input() count: number;
@Input() label: string;
@Input() data: number;
@Output() event: EventEmitter<any> = new EventEmitter();
constructor() { }
ngOnInit() {}
}