UNPKG

@engie-group/fluid-design-system-angular

Version:

Fluid Design System Angular

14 lines (11 loc) 287 B
import {Directive, ElementRef, HostBinding} from '@angular/core'; @Directive({ selector: '[njCardImage]', exportAs: 'njCardImage', standalone: true }) export class CardImageDirective { @HostBinding('class') class = 'nj-card__img'; constructor(private el: ElementRef) { } }