graycoreio/daffodil

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

Summary

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

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

export class DaffNotificationSubtitleDirective {

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