New to Kendo UI for Angular? Start a free 30-day trial
KENDO_RIPPLE
Use the KENDO_RIPPLE
utility array to add all @progress/kendo-angular-ripple
related components and directives to a standalone Angular component.
typescript
import { Component } from '@angular/core';
import { KENDO_RIPPLE } from '@progress/kendo-angular-ripple';
import { KENDO_BUTTON } from "@progress/kendo-angular-buttons";
@Component({
standalone: true,
imports: [KENDO_RIPPLE, KENDO_BUTTON],
template: `
<div kendoRippleContainer>
<button kendoButton>Ripple Button</button>
</div>
`,
})
export class AppComponent {}