mirror of
https://github.com/bitwarden/clients.git
synced 2026-07-07 21:10:55 +08:00
22 lines
756 B
HTML
22 lines
756 B
HTML
<popup-page>
|
|
<popup-header slot="header" [pageTitle]="'send' | i18n">
|
|
<ng-container slot="end">
|
|
<tools-new-send-dropdown></tools-new-send-dropdown>
|
|
|
|
<app-pop-out></app-pop-out>
|
|
<app-current-account></app-current-account>
|
|
</ng-container>
|
|
</popup-header>
|
|
|
|
<div
|
|
*ngIf="sendsListState === SendsListStateEnum.Empty"
|
|
class="tw-flex tw-flex-col tw-h-full tw-justify-center"
|
|
>
|
|
<bit-no-items [icon]="noItemIcon" class="tw-text-main">
|
|
<ng-container slot="title">{{ "sendsNoItemsTitle" | i18n }}</ng-container>
|
|
<ng-container slot="description">{{ "sendsNoItemsMessage" | i18n }}</ng-container>
|
|
<tools-new-send-dropdown slot="button"></tools-new-send-dropdown>
|
|
</bit-no-items>
|
|
</div>
|
|
</popup-page>
|