import { Component, OnInit, ChangeDetectionStrategy } from '@angular/core'; @Component({ selector: 'fei-typography', templateUrl: './typography.component.html', styleUrls: ['./typography.component.scss'], changeDetection: ChangeDetectionStrategy.OnPush }) export class TypographyComponent implements OnInit { constructor() { } ngOnInit() { } }