1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-11 13:53:34 +00:00

[PM-10731] Move vault icons (#10453)

* move NoFolders icon to vault library

* move DeactivatedOrg icon to vault library

* move Vault icon to vault library

* move NoResults icon to vault library

* clean up barrel file

* Revert "move NoResults icon to vault library"

This reverts commit 43abd45db7.

* re-export no results
This commit is contained in:
Nick Krantz
2024-08-12 08:38:11 -05:00
committed by GitHub
parent b3fb3f7094
commit 0b5afa6252
8 changed files with 13 additions and 10 deletions

View File

@@ -1,6 +1,3 @@
export * from "./deactivated-org";
export * from "./search";
export * from "./no-access";
export * from "./vault";
export * from "./no-results";
export * from "./no-folders";

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

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

View File

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

View File

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

View File

@@ -12,3 +12,5 @@ export {
} from "./components/assign-collections.component";
export { DownloadAttachmentComponent } from "./components/download-attachment/download-attachment.component";
export * as VaultIcons from "./icons";