import { Component, Input, Output, EventEmitter } from '@angular/core'; @Component({ selector: 'sam-filter-drawer-chip', template: ` {{ label }} ` }) export class SamFilterDrawerChip { @Input() public label: string; @Input() public disabled = false; @Output() public remove = new EventEmitter(); }