Skip to content

Commit 018cbc8

Browse files
committed
検索タブのアイコン修正
1 parent ee86029 commit 018cbc8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

web/components/BottomBar.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { MdHome } from "react-icons/md";
33
import { MdPeople } from "react-icons/md";
44
import { MdChat } from "react-icons/md";
55
import { MdSettings } from "react-icons/md";
6+
import { MdSearch } from "react-icons/md";
67

78
type Props = {
89
activeTab: "0_home" | "1_friends" | "2_chat" | "3_settings" | "4_search";
@@ -66,7 +67,7 @@ export default function BottomBar(props: Props) {
6667
label="Search"
6768
href="/search"
6869
isActive={activeTab === "4_search"}
69-
iconComponent={<MdSettings className="text-2xl" />}
70+
iconComponent={<MdSearch className="text-2xl" />}
7071
/>
7172
</div>
7273
);

0 commit comments

Comments
 (0)