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