1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +00:00

Add vault icon to anon layout.

This commit is contained in:
Alec Rippberger
2024-09-23 18:49:53 -05:00
parent 6d1d02a264
commit 54f0c0a46a
3 changed files with 26 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/pl
import { IconModule, Icon } from "../../../../components/src/icon";
import { SharedModule } from "../../../../components/src/shared";
import { TypographyModule } from "../../../../components/src/typography";
import { BitwardenLogo, BitwardenShield } from "../icons";
import { BitwardenLogo, VaultIcon } from "../icons";
@Component({
standalone: true,
@@ -56,7 +56,7 @@ export class AnonLayoutComponent implements OnInit, OnChanges {
// If there is no icon input, then use the default icon
if (this.icon == null) {
this.icon = BitwardenShield;
this.icon = VaultIcon;
}
}