1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-10 21:50:15 +00:00

Feature/pm 28788 desktop header UI migration (#18221)

Add desktop header component
This commit is contained in:
Isaac Ivins
2026-01-09 03:41:15 -05:00
committed by GitHub
parent 1022d21654
commit 95100b6f23
9 changed files with 229 additions and 34 deletions

View File

@@ -1,8 +1,11 @@
import { ChangeDetectionStrategy, Component, input } from "@angular/core";
import { TypographyDirective } from "../typography/typography.directive";
@Component({
selector: "bit-header",
templateUrl: "./header.component.html",
imports: [TypographyDirective],
changeDetection: ChangeDetectionStrategy.OnPush,
standalone: true,
})