Skip to main content
Sign in
Snippets Groups Projects
Select Git revision
  • d75cf98a3f070621a9e3c83abc509f0c7528eefb
  • main default protected
  • arts-xml-data-2.6
  • arts-xml-data-2.4
  • arts-xml-data-2.2
  • arts-xml-data-2.0
6 results

ChangeLog

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