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