New to Kendo UI for Angular? Start a free 30-day trial
KENDO_TOOLTIP
Use this utility array to access all Tooltip-related components and directives in a standalone Angular component.
typescript
import { Component } from '@angular/core';
import { KENDO_TOOLTIP } from '@progress/kendo-angular-tooltip';
@Component({
  selector: 'my-app',
  standalone: true,
  imports: [KENDO_TOOLTIP],
  template: `
     <div kendoTooltip>
         <button kendoButton title="Save">Save</button>
     </div>
  `
})
export class AppComponent {}