mirror of
https://github.com/bitwarden/browser
synced 2025-12-13 14:53:33 +00:00
14 lines
315 B
TypeScript
14 lines
315 B
TypeScript
import { ChangeDetectionStrategy, Component } from "@angular/core";
|
|
|
|
@Component({
|
|
selector: "bit-item-group",
|
|
standalone: true,
|
|
imports: [],
|
|
template: `<ng-content></ng-content>`,
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
host: {
|
|
class: "tw-block",
|
|
},
|
|
})
|
|
export class ItemGroupComponent {}
|