import { Component, ChangeDetectionStrategy } from '@angular/core'; @Component({ selector: 'app-info-icon-image', template: ``, styles: [` :host { position: relative; display: block; text-align: center; margin-bottom: 5px; } `], changeDetection: ChangeDetectionStrategy.OnPush }) export class InfoIconImageComponent { }