summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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>
</>
) }