import { Component, HostBinding } from '@angular/core'; @Component({ selector: 'c-header-text, [cHeaderText]', template: ``, standalone: true }) export class HeaderTextComponent { @HostBinding('class.header-text') headerTextClass = true; }