UNPKG

coreui-angular-ex

Version:

CoreUI Components Library for Angular

20 lines (14 loc) 300 B
import { Directive, HostBinding } from '@angular/core'; @Directive({ selector: '[cAlertLink]', standalone: true }) export class AlertLinkDirective { @HostBinding('class') get hostClasses(): any { return { 'alert-link': true, }; } constructor() { } }