1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

move DeactivatedOrg icon to vault library

This commit is contained in:
Nick Krantz
2024-08-08 14:09:02 -05:00
parent f949170fd1
commit 5127c83b1e
3 changed files with 4 additions and 2 deletions

View File

@@ -8,6 +8,7 @@ import { JslibModule } from "@bitwarden/angular/jslib.module";
import { CollectionId, OrganizationId } from "@bitwarden/common/types/guid";
import { CipherType } from "@bitwarden/common/vault/enums";
import { ButtonModule, Icons, NoItemsModule } from "@bitwarden/components";
import { VaultIcons } from "@bitwarden/vault";
import { CurrentAccountComponent } from "../../../../auth/popup/account-switching/current-account.component";
import { PopOutComponent } from "../../../../platform/popup/components/pop-out.component";
@@ -74,7 +75,7 @@ export class VaultV2Component implements OnInit, OnDestroy {
protected vaultState: VaultState | null = null;
protected vaultIcon = Icons.Vault;
protected deactivatedIcon = Icons.DeactivatedOrg;
protected deactivatedIcon = VaultIcons.DeactivatedOrg;
protected noResultsIcon = Icons.NoResults;
protected VaultStateEnum = VaultState;

View File

@@ -1,4 +1,4 @@
import { svgIcon } from "../icon";
import { svgIcon } from "@bitwarden/components";
export const DeactivatedOrg = svgIcon`
<svg width="138" height="118" viewBox="0 0 138 118" fill="none" xmlns="http://www.w3.org/2000/svg">

View File

@@ -1 +1,2 @@
export * from "./deactivated-org";
export * from "./no-folders";