UNPKG

igniteui-angular-sovn

Version:

Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps

17 lines (13 loc) 421 B
import { Component, ViewChild } from '@angular/core'; import { IgxTooltipDirective } from './tooltip.directive'; @Component({ selector: 'igx-tooltip', templateUrl: 'tooltip.component.html', standalone: true, imports: [IgxTooltipDirective] }) export class IgxTooltipComponent { @ViewChild(IgxTooltipDirective, { static: true }) public tooltip: IgxTooltipDirective; public content: string; }