From 00b01c973eff6076fa3c7043b136a0bdcf1ac413 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Sat, 20 Apr 2024 16:13:16 -0500 Subject: [PATCH] feat: archive button --- src/lib/components/icons/ArchiveBox.svelte | 19 +++++++++++++++++++ src/lib/components/layout/Sidebar.svelte | 15 ++++++++++++++- 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 src/lib/components/icons/ArchiveBox.svelte diff --git a/src/lib/components/icons/ArchiveBox.svelte b/src/lib/components/icons/ArchiveBox.svelte new file mode 100644 index 0000000000..d4f6e201ab --- /dev/null +++ b/src/lib/components/icons/ArchiveBox.svelte @@ -0,0 +1,19 @@ + + + + + diff --git a/src/lib/components/layout/Sidebar.svelte b/src/lib/components/layout/Sidebar.svelte index 2c1734a2a4..ef08cf0f82 100644 --- a/src/lib/components/layout/Sidebar.svelte +++ b/src/lib/components/layout/Sidebar.svelte @@ -25,6 +25,7 @@ import Tooltip from '../common/Tooltip.svelte'; import ChatMenu from './Sidebar/ChatMenu.svelte'; import ShareChatModal from '../chat/ShareChatModal.svelte'; + import ArchiveBox from '../icons/ArchiveBox.svelte'; let show = false; let navElement; @@ -550,7 +551,7 @@ {:else} -
+
{ @@ -587,6 +588,18 @@ + + + +
{/if}