import { Component, ChangeDetectionStrategy } from '@angular/core'; @Component({ selector: 'app-info-icon-text', template: ``, styles: [` :host { position: relative; display: block; font-weight: normal; margin-bottom: 5px; line-height: 1.2em; font-size: 12px; } `], changeDetection: ChangeDetectionStrategy.OnPush }) export class InfoIconTextComponent { }