UNPKG

igniteui-angular-sovn

Version:

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

19 lines (15 loc) 425 B
import { Directive, TemplateRef } from '@angular/core'; @Directive({ selector: '[igxProgressBarText]', standalone: true }) export class IgxProgressBarTextTemplateDirective { constructor(public template: TemplateRef<any>) { } } @Directive({ selector: '[igxProgressBarGradient]', standalone: true }) export class IgxProgressBarGradientDirective { constructor(public template: TemplateRef<any>) { } }