We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee86029 commit 018cbc8Copy full SHA for 018cbc8
web/components/BottomBar.tsx
@@ -3,6 +3,7 @@ import { MdHome } from "react-icons/md";
3
import { MdPeople } from "react-icons/md";
4
import { MdChat } from "react-icons/md";
5
import { MdSettings } from "react-icons/md";
6
+import { MdSearch } from "react-icons/md";
7
8
type Props = {
9
activeTab: "0_home" | "1_friends" | "2_chat" | "3_settings" | "4_search";
@@ -66,7 +67,7 @@ export default function BottomBar(props: Props) {
66
67
label="Search"
68
href="/search"
69
isActive={activeTab === "4_search"}
- iconComponent={<MdSettings className="text-2xl" />}
70
+ iconComponent={<MdSearch className="text-2xl" />}
71
/>
72
</div>
73
);
0 commit comments