bitwarden-clients/apps/desktop/src/app/layout/header/desktop-header.component.html
Isaac Ivins 95100b6f23
Some checks are pending
Auto Update Branch / Update Branch (push) Waiting to run
Chromatic / Check PR run (push) Waiting to run
Chromatic / Chromatic (push) Blocked by required conditions
Lint / Lint (push) Waiting to run
Lint / Run Rust lint on macos-14 (push) Waiting to run
Lint / Run Rust lint on ubuntu-24.04 (push) Waiting to run
Lint / Run Rust lint on windows-2022 (push) Waiting to run
Testing / Upload to Codecov (push) Blocked by required conditions
Scan / Check PR run (push) Waiting to run
Scan / Checkmarx (push) Blocked by required conditions
Scan / Sonar (push) Blocked by required conditions
Testing / Run tests (push) Waiting to run
Testing / Run Rust tests on macos-14 (push) Waiting to run
Testing / Run Rust tests on ubuntu-22.04 (push) Waiting to run
Testing / Run Rust tests on windows-2022 (push) Waiting to run
Testing / Rust Coverage (push) Waiting to run
Feature/pm 28788 desktop header UI migration (#18221)
Add desktop header component
2026-01-09 09:41:15 +01:00

21 lines
545 B
HTML

<div class="tw-my-4 tw-px-4">
<bit-header [title]="resolvedTitle()" [icon]="icon()">
<ng-container slot="breadcrumbs">
<ng-content select="[slot=breadcrumbs]" />
</ng-container>
<ng-content />
<ng-container slot="title-suffix">
<ng-content select="[slot=title-suffix]" />
</ng-container>
<ng-container slot="secondary">
<ng-content select="[slot=secondary]" />
</ng-container>
<ng-container slot="tabs">
<ng-content select="[slot=tabs]" />
</ng-container>
</bit-header>
</div>