diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-02-21 22:38:25 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-02-21 22:38:25 +0700 |
| commit | 036e72780ddb7a510795b329919ff9dd957af6d7 (patch) | |
| tree | 2ff605edd469f61471270c2022caaa830e0cd666 /src/core/components | |
| parent | 98c8fc56db91664b98a50e9113787b56fe785b9e (diff) | |
fix
Diffstat (limited to 'src/core/components')
| -rw-r--r-- | src/core/components/elements/Sidebar/Sidebar.jsx | 4 |
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> </> ) } |
