Skip to content

Commit

Permalink
menu icon change
Browse files Browse the repository at this point in the history
  • Loading branch information
ridhozhr10 committed May 13, 2024
1 parent 64f6ed3 commit dcda9af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/_components/layout/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import Link from "next/link";
import { useState } from "react";
import { BiMenu } from "react-icons/bi";
import { BiMenu, BiMenuAltRight } from "react-icons/bi";
import style from "./style.module.scss";

const menuList = [
Expand Down Expand Up @@ -61,7 +61,7 @@ const Navigation = ({ menus }: NavigationProps) => {
setIsOpen((v) => !v);
}}
>
<BiMenu />
{!isOpen ? <BiMenu /> : <BiMenuAltRight />}
</nav>
</div>
);
Expand Down

0 comments on commit dcda9af

Please sign in to comment.