New to Kendo UI for Angular? Start a free 30-day trial
ICON_SETTINGS
Represents the token for the IconSettings
of Kendo UI for Angular components.
Use this token to configure icon settings. (See example.)
typescript
import { NgModule } from '@angular/core';
@NgModule({
providers: [{ provide: ICON_SETTINGS, useValue: { type: 'svg', size: 'xsmall' } }]
})
export class AppModule {}