Skip to content

Commit 77f9391

Browse files
committed
v1.82
- Alterando ícone por estética
1 parent 68874cb commit 77f9391

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/components/header/index.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
"use client";
22

33
import Link from "next/link";
4-
import { FiUser, FiLogOut, FiLoader, FiLock } from "react-icons/fi";
4+
import { FiLogOut, FiLoader, FiLock } from "react-icons/fi";
5+
import { LiaCalendarWeekSolid } from "react-icons/lia";
56
import { signIn, signOut, useSession } from "next-auth/react";
67

78
export default function Header() {
@@ -40,7 +41,7 @@ export default function Header() {
4041
{status === "authenticated" && (
4142
<div className="flex gap-x-4 items-baseline">
4243
<Link href={"/semana"} className="hover:scale-110 duration-300 cursor-pointer">
43-
<FiUser size={24} color="#fff" />
44+
<LiaCalendarWeekSolid size={24} color="#fff" />
4445
</Link>
4546

4647
<button className="hover:scale-110 duration-300 cursor-pointer" onClick={handleLogout}>

0 commit comments

Comments
 (0)