1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-10 05:30:01 +00:00
Files
browser/libs/components/src/skeleton/skeleton-group.component.ts
2025-10-21 18:52:40 +02:00

21 lines
694 B
TypeScript

import { CommonModule } from "@angular/common";
import { Component } from "@angular/core";
/**
* Arranges skeleton loaders into a pre-arranged group that mimics the table and item components.
*
* Pass skeleton loaders into the start, default, and end content slots. The content within each slot
* is fully customizable.
*/
// FIXME(https://bitwarden.atlassian.net/browse/CL-764): Migrate to OnPush
// eslint-disable-next-line @angular-eslint/prefer-on-push-component-change-detection
@Component({
selector: "bit-skeleton-group",
templateUrl: "./skeleton-group.component.html",
imports: [CommonModule],
host: {
class: "tw-block",
},
})
export class SkeletonGroupComponent {}