Skip to main content
Sign in
Snippets Groups Projects
Select Git revision
  • ac9a0c8cf2f637c1c2900600706e7b8bd49b81b2
  • master default protected
  • devel
  • adaptive_step_size
4 results

rdprm.go

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