diff options
| author | MohamedBassem <me@mbassem.com> | 2025-08-24 16:09:26 +0300 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2025-08-24 18:35:05 +0300 |
| commit | 5d502f519a9e6cac4d8ed17d04457e16c65ce3a3 (patch) | |
| tree | f6aa584781d8f58a7296c8348eaa25f333db1700 | |
| parent | b927574b7b7d8e2f9d4495c3413a87d6886f3260 (diff) | |
| download | karakeep-5d502f519a9e6cac4d8ed17d04457e16c65ce3a3.tar.zst | |
fix(mobile): Change the icon of the share button
| -rw-r--r-- | apps/mobile/components/bookmarks/BookmarkCard.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/mobile/components/bookmarks/BookmarkCard.tsx b/apps/mobile/components/bookmarks/BookmarkCard.tsx index 7329aa46..67448433 100644 --- a/apps/mobile/components/bookmarks/BookmarkCard.tsx +++ b/apps/mobile/components/bookmarks/BookmarkCard.tsx @@ -18,7 +18,7 @@ import * as Sharing from "expo-sharing"; import useAppSettings from "@/lib/settings"; import { api } from "@/lib/trpc"; import { MenuView } from "@react-native-menu/menu"; -import { Ellipsis, Share2, Star } from "lucide-react-native"; +import { Ellipsis, ShareIcon, Star } from "lucide-react-native"; import type { ZBookmark } from "@karakeep/shared/types/bookmarks"; import { @@ -181,7 +181,7 @@ function ActionBar({ bookmark }: { bookmark: ZBookmark }) { handleShare(); }} > - <Share2 color="gray" /> + <ShareIcon color="gray" /> </Pressable> <MenuView |
