Skip to main content
Sign in
Snippets Groups Projects
Select Git revision
  • c488009963f9f491e72a83bfbdab6104cd0a4e9b
  • development default
  • production protected
  • bugfixing
  • polishing
  • update
  • security_patch
7 results

tool-panel.component.ts

Blame
  • 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;
    }