Select Git revision
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
tool-panel.component.ts 549 B
import {Component, Input, OnInit} from '@angular/core';
@Component({
selector: 'app-tool-panel',
templateUrl: './tool-panel.component.html',
styleUrls: ['./tool-panel.component.scss']
})
export class ToolPanelComponent implements OnInit {
@Input() label: string = "";
@Input() link: string = "";
@Input() icon: string | undefined = undefined
@Input() font_size: string |undefined= undefined
@Input() width: number |undefined = undefined
constructor() { }
ngOnInit(): void {
}
protected readonly undefined = undefined;
}