UNPKG

coreui-angular-ex

Version:

CoreUI Components Library for Angular

15 lines (13 loc) 294 B
import { Directive, HostBinding } from '@angular/core'; @Directive({ selector: '[cDropdownItemPlain]', standalone: true }) export class DropdownItemPlainDirective { @HostBinding('class') get hostClasses(): any { return { 'dropdown-item-text': true }; } }