import { ChangeDetectionStrategy, Component, Input } from '@angular/core'; @Component({ selector: 'iqser-logo [icon]', templateUrl: './logo.component.html', styleUrls: ['./logo.component.scss'], changeDetection: ChangeDetectionStrategy.OnPush, }) export class LogoComponent { @Input() icon!: string; }