summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-02-21 22:38:25 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-02-21 22:38:25 +0700
commit036e72780ddb7a510795b329919ff9dd957af6d7 (patch)
tree2ff605edd469f61471270c2022caaa830e0cd666 /src/core
parent98c8fc56db91664b98a50e9113787b56fe785b9e (diff)
fix
Diffstat (limited to 'src/core')
-rw-r--r--src/core/components/elements/Sidebar/Sidebar.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/components/elements/Sidebar/Sidebar.jsx b/src/core/components/elements/Sidebar/Sidebar.jsx
index c840a688..48ceacf6 100644
--- a/src/core/components/elements/Sidebar/Sidebar.jsx
+++ b/src/core/components/elements/Sidebar/Sidebar.jsx
@@ -1,8 +1,8 @@
import Link from "../Link/Link"
import greeting from "@/core/utils/greeting"
-import { Cog6ToothIcon } from "@heroicons/react/24/solid"
import useAuth from "@/core/hooks/useAuth"
import { AnimatePresence, motion } from "framer-motion"
+import { CogIcon } from "@heroicons/react/24/outline"
const Sidebar = ({
active,
@@ -61,7 +61,7 @@ const Sidebar = ({
href="/my/menu"
className="!text-gray_r-11 ml-auto my-auto"
>
- <Cog6ToothIcon className="w-6" />
+ <CogIcon className="w-6" />
</Link>
</>
) }