2025-04-20 07:50:57 -06:00
|
|
|
import { FaArrowLeft } from "react-icons/fa";
|
|
|
|
|
|
|
|
|
|
export default function DashboardNav({ handleCloseAdminDashboard }) {
|
|
|
|
|
return (
|
2025-04-21 01:01:58 -06:00
|
|
|
<div className="w-48 min-w-[12rem] bg-gray-100 text-emerald-600 flex flex-col p-4 shadow-md">
|
|
|
|
|
<button
|
|
|
|
|
onClick={handleCloseAdminDashboard}
|
|
|
|
|
className="flex items-center gap-2 text-sm font-medium hover:text-emerald-700 underline underline-offset-4 transition"
|
|
|
|
|
>
|
|
|
|
|
<FaArrowLeft className="text-xs mt-[1px]" />
|
|
|
|
|
Back to User Page
|
|
|
|
|
</button>
|
2025-04-20 07:50:57 -06:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|