aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/components/dashboard/search/SearchInput.tsx
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-04-20 23:49:24 +0000
committerMohamed Bassem <me@mbassem.com>2025-04-21 01:00:34 +0000
commitcd632f295d896100207e1b02bfeb574175c07633 (patch)
tree4944263d3bea3092b31799e584130200e6fb3dbf /apps/web/components/dashboard/search/SearchInput.tsx
parentca58d68f0ef8d0c3afada6cb81b196f2db157376 (diff)
downloadkarakeep-cd632f295d896100207e1b02bfeb574175c07633.tar.zst
ui(web): Reduce shadows, lighten some fonts, and a smaller editor. #1261
Diffstat (limited to 'apps/web/components/dashboard/search/SearchInput.tsx')
-rw-r--r--apps/web/components/dashboard/search/SearchInput.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/web/components/dashboard/search/SearchInput.tsx b/apps/web/components/dashboard/search/SearchInput.tsx
index 5e46fc18..c58542bf 100644
--- a/apps/web/components/dashboard/search/SearchInput.tsx
+++ b/apps/web/components/dashboard/search/SearchInput.tsx
@@ -6,6 +6,7 @@ import { Input } from "@/components/ui/input";
import { useDoBookmarkSearch } from "@/lib/hooks/bookmark-search";
import { useTranslation } from "@/lib/i18n/client";
import { cn } from "@/lib/utils";
+import { SearchIcon } from "lucide-react";
import { EditListModal } from "../lists/EditListModal";
import QueryExplainerTooltip from "./QueryExplainerTooltip";
@@ -99,6 +100,7 @@ const SearchInput = React.forwardRef<
</Button>
)}
<Input
+ startIcon={SearchIcon}
ref={inputRef}
value={value}
onChange={onChange}