libs/design/hero/src/hero-title/hero-title.directive.ts
import {
Directive,
HostBinding,
} from '@angular/core';
@Directive({
selector: '[daffHeroTitle]',
standalone: true,
})
export class DaffHeroTitleDirective {
/**
* @docs-private
*/
@HostBinding('class.daff-hero__title') class = true;
}