New to Kendo UI for AngularStart a free 30-day trial

Represents the service that manages icon settings. Use the notify method to update icon settings dynamically.

Definition

Package:@progress/kendo-angular-icons

Syntax:

TS
constructor(private iconSettingsService: IconSettingsService) {}

this.iconSettingsService.notify({ themeColor: 'primary' });

Methods

Returns the list of classes to be rendered on the host SPAN element of custom font icons. Override in a custom service to provide classes for custom font icons. The optional _component parameter carries the host component identity so subclasses can return different classes for the same key depending on the requesting component.

Parameters:_keystring_component?stringReturns:

string

Returns the SVGIcon object for the provided key. Override in a custom service to provide custom SVG icons. The optional _component parameter carries the host component identity (e.g. 'dateinput', 'grid') so subclasses can return different icons for the same name depending on the requesting component.

Parameters:_namestring_component?stringReturns:

SVGIcon

Notifies subscribers about changes in the icon settings.

Parameters:iconSettings?IconSettings

(Optional) Sets a new value for the icon settings token.