import { Component, HostBinding, Input, ViewEncapsulation } from '@angular/core'; @Component({ selector: 'trend', template: ` `, styleUrls: [ './trend.less' ], encapsulation: ViewEncapsulation.None, // tslint:disable-next-line:use-host-property-decorator host: { '[class.grey]': '!colorful' } }) export class TrendComponent { @Input() flag: 'up' | 'down'; @Input() colorful = true; }