graycoreio/daffodil

View on GitHub
libs/design/notification/src/notification-message/notification-message.directive.ts

Summary

Maintainability
A
0 mins
Test Coverage
import {
  Directive,
  HostBinding,
} from '@angular/core';

@Directive({
  selector: '[daffNotificationMessage]',
  standalone: true,
})

export class DaffNotificationMessageDirective {

  @HostBinding('class.daff-notification__message') class = true;
}