libs/design/notification/src/notification-message/notification-message.directive.ts
import {
Directive,
HostBinding,
} from '@angular/core';
@Directive({
selector: '[daffNotificationMessage]',
standalone: true,
})
export class DaffNotificationMessageDirective {
@HostBinding('class.daff-notification__message') class = true;
}