refactor(sidebar): replace FolderInput with FilePlus in DocumentsSidebar

- Updated the import of FolderInput to FilePlus for improved icon representation in the sidebar.
- Enhanced the button for document import to align with the new iconography, improving visual consistency.
This commit is contained in:
Anish Sarkar 2026-07-08 10:28:53 +05:30
parent 53d3b304d3
commit 9a18c7771e

View file

@ -4,7 +4,7 @@ import { useQuery } from "@rocicorp/zero/react";
import { useAtom, useAtomValue, useSetAtom } from "jotai"; import { useAtom, useAtomValue, useSetAtom } from "jotai";
import { import {
Check, Check,
FolderInput, FilePlus,
FolderPlus, FolderPlus,
FolderSync, FolderSync,
ListFilter, ListFilter,
@ -287,7 +287,7 @@ export function EmbeddedImportMenu({
className="h-6 w-6 text-muted-foreground hover:bg-accent hover:text-accent-foreground" className="h-6 w-6 text-muted-foreground hover:bg-accent hover:text-accent-foreground"
aria-label="Import documents" aria-label="Import documents"
> >
<FolderInput className="size-3.5" /> <FilePlus className="size-3.5" />
</Button> </Button>
</DropdownMenuTrigger> </DropdownMenuTrigger>
<DropdownMenuContent align="end" className="w-56"> <DropdownMenuContent align="end" className="w-56">