IconsService
Class
Represents the service that manages icon settings.
Add this service to the providers array when you use it in a standalone component.
Definition
Package:@progress/kendo-angular-icons
Syntax:
TS
import { IconsService } from '@progress/kendo-angular-icons';
@Component({
selector: 'my-component',
standalone: true,
imports: [ ... ],
providers: [IconsService, { provide: ICON_SETTINGS, useValue: { type: 'font' } }],
template: `...`
})
export class AppComponent {}