mirror of
https://github.com/bitwarden/clients.git
synced 2026-01-16 23:12:39 +00:00
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
Add desktop header component
21 lines
545 B
HTML
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>
|