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