UNPKG

coreui-angular-ex

Version:

CoreUI Components Library for Angular

17 lines (13 loc) 290 B
import { Directive, HostBinding } from '@angular/core'; @Directive({ selector: '[cOffcanvasTitle]', standalone: true }) export class OffcanvasTitleDirective { @HostBinding('class') get hostClasses(): any { return { 'offcanvas-title': true, }; } }