You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
876 B
TypeScript
32 lines
876 B
TypeScript
import { Component, OnInit, Input, Output, EventEmitter} from '@angular/core';
|
|
import { TranslatorService } from '../../services/translator/translator.service';
|
|
|
|
@Component({
|
|
selector: 'app-services-button',
|
|
templateUrl: './services-button.component.html',
|
|
styleUrls: ['./services-button.component.scss'],
|
|
})
|
|
export class ServicesButtonComponent implements OnInit {
|
|
|
|
@Input() class: any = '';
|
|
@Input() buttonClass: any = '';
|
|
@Input() icon: string;
|
|
@Input() title: string;
|
|
@Output() trigger = new EventEmitter();
|
|
@Input() focusicon: string;
|
|
@Input() disabled = false;
|
|
public direction: string;
|
|
public style: any;
|
|
|
|
public myTeamIcon="assets/icon/new-design/leave_balance.png";
|
|
public vacationRuleIcon="assets/icon/new-design/vacation_rules_icon.png"
|
|
constructor(
|
|
public ts: TranslatorService
|
|
) {}
|
|
|
|
ngOnInit() {}
|
|
|
|
public onClicked() {}
|
|
}
|
|
|