New to Kendo UI for Angular? Start a free 30-day trial
IconModule
Represents the NgModule
definition for the Icon component.
typescript
import { NgModule } from '@angular/core';
import { IconModule } from '@progress/kendo-angular-icons';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, IconModule],
bootstrap: [AppComponent]
})
export class AppModule {}