@engie-group/fluid-design-system-angular
Version:
Fluid Design System Angular
18 lines (15 loc) • 475 B
text/typescript
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() {}
}