Change Icon of sidebar and link

This commit is contained in:
sosokker 2023-11-21 03:43:26 +07:00
parent 10e64bb340
commit 7d75c4a453

View File

@ -1,6 +1,7 @@
import { useState } from "react";
import { AiOutlineHome, AiOutlineSchedule, AiOutlineUnorderedList, AiOutlinePieChart } from "react-icons/ai";
import { PiStepsDuotone } from "react-icons/pi";
import { IoSettingsOutline } from "react-icons/io5";
import { AnimatePresence, motion } from "framer-motion";
import { Link, useNavigate } from "react-router-dom";
@ -8,7 +9,7 @@ const menuItems = [
{ id: 0, path: "/", icon: <AiOutlineHome /> },
{ id: 1, path: "/tasks", icon: <AiOutlineUnorderedList /> },
{ id: 2, path: "/calendar", icon: <AiOutlineSchedule /> },
{ id: 3, path: "/analytic", icon: <AiOutlinePieChart /> },
{ id: 3, path: "/settings", icon: <IoSettingsOutline /> },
{ id: 4, path: "/priority", icon: <PiStepsDuotone /> },
];