mirror of
https://github.com/bitwarden/browser
synced 2026-02-19 19:04:01 +00:00
* migrate all components to use PremiumBadgeComponent * move badge component to vault * move premium badge to vault * move premium badge to billing * fix import * use premium badge in tools new send dropdown * remove badge module import * remove module
26 lines
835 B
HTML
26 lines
835 B
HTML
<button bitButton [bitMenuTriggerFor]="itemOptions" [buttonType]="buttonType" type="button">
|
|
<i *ngIf="!hideIcon" class="bwi bwi-plus" aria-hidden="true"></i>
|
|
{{ (hideIcon ? "createSend" : "new") | i18n }}
|
|
</button>
|
|
<bit-menu #itemOptions>
|
|
<a
|
|
bitMenuItem
|
|
[routerLink]="buildRouterLink(sendType.Text)"
|
|
[queryParams]="buildQueryParams(sendType.Text)"
|
|
>
|
|
<i class="bwi bwi-file-text" slot="start" aria-hidden="true"></i>
|
|
{{ "sendTypeText" | i18n }}
|
|
</a>
|
|
<a
|
|
bitMenuItem
|
|
[routerLink]="buildRouterLink(sendType.File)"
|
|
[queryParams]="buildQueryParams(sendType.File)"
|
|
>
|
|
<div class="tw-flex tw-items-center tw-gap-2">
|
|
<i class="bwi bwi-file" slot="start" aria-hidden="true"></i>
|
|
{{ "sendTypeFile" | i18n }}
|
|
<app-premium-badge></app-premium-badge>
|
|
</div>
|
|
</a>
|
|
</bit-menu>
|