import { ChangeDetectionStrategy, Component, ViewEncapsulation } from '@angular/core';

@Component({
  selector: 'nj-accordion-actions',
  templateUrl: './accordion-actions.component.html',
  encapsulation: ViewEncapsulation.None,
  changeDetection: ChangeDetectionStrategy.OnPush,
  standalone: true,
  host: {
    class: 'nj-accordion__actions'
  }
})
export class AccordionActionsComponent {}
