New to Kendo UI for Angular? Start a free 30-day trial
KENDO_TYPOGRAPHY
Updated on Nov 3, 2025
Use this utility array to access all @progress/kendo-angular-typography-related components and directives in a standalone Angular component.
typescript
import { Component } from '@angular/core';
import { KENDO_TYPOGRAPHY } from '@progress/kendo-angular-typography';
@Component({
  selector: 'my-app',
  standalone: true,
  imports: [KENDO_TYPOGRAPHY],
  template: `<div kendoTypography variant="k-h1"></div>`
})
export class AppComponent {}