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