New to Kendo UI for Angular? Start a free 30-day trial
KENDO_SWITCH
Use the KENDO_SWITCH
utility array to add all Switch-related components and directives to a standalone Angular component.
typescript
import { KENDO_SWITCH } from '@progress/kendo-angular-inputs';
@Component({
standalone: true,
imports: [KENDO_SWITCH],
template: `<kendo-switch></kendo-switch>`
})
export class MyComponent {}