@progress/kendo-angular-icons
Version:
Kendo UI Angular component starter template
21 lines (20 loc) • 905 B
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { InjectionToken } from '@angular/core';
/**
* Represents the token for the `IconSettings` of Kendo UI for Angular components.
* Use this token to configure icon settings. ([See example.](slug:icon_settings#toc-icons-configuration))
*
* @example
* ```typescript
* import { NgModule } from '@angular/core';
*
* @NgModule({
* providers: [{ provide: ICON_SETTINGS, useValue: { type: 'svg', size: 'xsmall' } }]
* })
* export class AppModule {}
* ```
*/
export const ICON_SETTINGS = new InjectionToken('Kendo UI Icon-Settings token');