New to Kendo UI for Angular? Start a free 30-day trial
IconsService
Represents the service that manages icon settings.
Add this service to the providers
array when you use it in a standalone component.
typescript
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 {}
Constructors
IconsService
(_iconSettings: IconSettings, iconSettingsService: IconSettingsService)
Parameters
_iconSettings
iconSettingsService