KENDO_TYPOGRAPHY
Constant
Use this utility array to access all @progress/kendo-angular-typography-related components and directives in a standalone Angular component.
Definition
Package:@progress/kendo-angular-typography
Syntax:
TS
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 {}