import { XMarkIcon } from "@heroicons/react/24/outline"; import type { AccountFragment } from "@hey/indexer"; import { Link } from "react-router"; import AccountLink from "@/components/Shared/Account/AccountLink"; import SingleAccount from "@/components/Shared/Account/SingleAccount"; import Bookmarks from "@/components/Shared/Navbar/NavItems/Bookmarks"; import Groups from "@/components/Shared/Navbar/NavItems/Groups"; import Logout from "@/components/Shared/Navbar/NavItems/Logout"; import Rewards from "@/components/Shared/Navbar/NavItems/Rewards"; import Settings from "@/components/Shared/Navbar/NavItems/Settings"; import Support from "@/components/Shared/Navbar/NavItems/Support"; import SwitchAccount from "@/components/Shared/Navbar/NavItems/SwitchAccount"; import ThemeSwitch from "@/components/Shared/Navbar/NavItems/ThemeSwitch"; import YourAccount from "@/components/Shared/Navbar/NavItems/YourAccount"; import cn from "@/helpers/cn"; import { useMobileDrawerModalStore } from "@/store/non-persisted/modal/useMobileDrawerModalStore"; import { useAccountStore } from "@/store/persisted/useAccountStore"; const MobileDrawerMenu = () => { const { currentAccount } = useAccountStore(); const { setShow: setShowMobileDrawer } = useMobileDrawerModalStore(); const handleCloseDrawer = () => { setShowMobileDrawer(false); }; const itemClass = "py-3 hover:bg-gray-100 dark:hover:bg-gray-800"; return (
); }; export default MobileDrawerMenu;