Replaced Teachers Icon

This commit is contained in:
Joao Ramos
2023-12-07 23:13:42 +00:00
parent 0049ab272b
commit 7dc9d568d1
3 changed files with 4 additions and 5 deletions

View File

@@ -13,7 +13,7 @@ import {
BsGlobeCentralSouthAsia,
BsPerson,
BsPersonFill,
BsPersonLinesFill,
BsPencilSquare,
BsBank,
} from "react-icons/bs";
import UserCard from "@/components/UserCard";
@@ -199,7 +199,7 @@ export default function AdminDashboard({user}: Props) {
color="purple"
/>
<IconCard
Icon={BsPersonLinesFill}
Icon={BsPencilSquare}
label="Teachers"
value={users.filter((x) => x.type === "teacher").length}
onClick={() => setPage("teachers")}