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) {
  }
}
