UNPKG

coreui-angular-ex-dev

Version:

CoreUI Components Library for Angular

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