2024-01-30 09:52:24 +00:00
|
|
|
import { FC } from "react";
|
|
|
|
import { Menu } from "lucide-react";
|
|
|
|
import { useApplication } from "hooks/store";
|
|
|
|
import { observer } from "mobx-react";
|
|
|
|
|
2024-02-08 12:19:26 +00:00
|
|
|
export const SidebarHamburgerToggle: FC = observer(() => {
|
2024-01-30 09:52:24 +00:00
|
|
|
const { theme: themStore } = useApplication();
|
|
|
|
return (
|
|
|
|
<div
|
2024-02-12 11:31:58 +00:00
|
|
|
className="w-7 h-7 flex-shrink-0 rounded flex justify-center items-center bg-custom-background-80 transition-all hover:bg-custom-background-90 cursor-pointer group md:hidden"
|
2024-02-13 11:03:01 +00:00
|
|
|
onClick={() => themStore.toggleMobileSidebar()}
|
2024-01-30 09:52:24 +00:00
|
|
|
>
|
|
|
|
<Menu size={14} className="text-custom-text-200 group-hover:text-custom-text-100 transition-all" />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
});
|