import {Component, Input} from '@angular/core'; @Component({ selector: 'rss-label', templateUrl: './label.component.html', styleUrls: ['./label.component.scss'] }) export class LabelComponent { @Input() label: any; @Input() moreInfo: any; }