Skip to content

Commit

Permalink
fix x mar icon
Browse files Browse the repository at this point in the history
  • Loading branch information
judygab committed Oct 10, 2023
1 parent 1368291 commit c946223
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import Link from "next/link";
import React, { useState } from "react";
import NavLink from "./NavLink";
import { Bars3Icon, XmarkIcon } from "@heroicons/react/24/solid";
import { Bars3Icon, XMarkIcon } from "@heroicons/react/24/solid";
import MenuOverlay from "./MenuOverlay";

const navLinks = [
Expand Down Expand Up @@ -45,7 +45,7 @@ const Navbar = () => {
onClick={() => setNavbarOpen(false)}
className="flex items-center px-3 py-2 border rounded border-slate-200 text-slate-200 hover:text-white hover:border-white"
>
<XmarkIcon className="h-5 w-5" />
<XMarkIcon className="h-5 w-5" />
</button>
)}
</div>
Expand Down

0 comments on commit c946223

Please sign in to comment.