Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
smp-warning-panel.component.ts 335 B
Newer Older
import { Component, Input } from '@angular/core';

@Component({
  selector: 'smp-warning-panel',
  template: '<div class="error-data-panel" >' +
    '<mat-icon *ngIf="icon">{{icon}}</mat-icon>' +
    '<span>{{label}}</span>' +
    '</div>'
})
export class SmpWarningPanelComponent {
  @Input() label:string;
  @Input() icon:string;
Joze RIHTARSIC's avatar
Joze RIHTARSIC committed