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

@Component({
  selector: 'nj-skeleton-container',
  templateUrl: './skeleton-container.component.html',
  changeDetection: ChangeDetectionStrategy.OnPush,
  standalone: true
})
export class SkeletonContainerComponent {
  /**
   * Skeleton label (read by screen readers).
   * Defaults to "Content is loading"
   */
  @Input() screenReaderLabel?: string = 'Content is loading';

  constructor() {}
}
