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