graycoreio/daffodil

View on GitHub
libs/design/sidebar/src/sidebar-footer/sidebar-footer.component.ts

Summary

Maintainability
A
0 mins
Test Coverage
import {
  Component,
  HostBinding,
  ChangeDetectionStrategy,
} from '@angular/core';

@Component({
  selector: 'daff-sidebar-footer',
  template: '<ng-content></ng-content>',
  styleUrls: ['./sidebar-footer.component.scss'],
  changeDetection: ChangeDetectionStrategy.OnPush,
  standalone: true,
})
export class DaffSidebarFooterComponent {
  @HostBinding('class.daff-sidebar-footer') class = true;
}