import { ChangeDetectionStrategy, Component, Input } from '@angular/core'; @Component({ selector: 'iqser-side-nav [title]', templateUrl: './side-nav.component.html', changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, }) export class SideNavComponent { @Input() title!: string; }