Skip to content

Commit 4c0f31b

Browse files
committed
Update mobile-menu.tsx
1 parent b3b99d0 commit 4c0f31b

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed
Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
"use client";
1+
'use client'
22

3-
import { MenuIcon } from "lucide-react";
4-
import { useSidebarContext } from "@/hooks/geistdocs/use-sidebar";
5-
import { Button } from "../ui/button";
3+
import { MenuIcon } from 'lucide-react'
4+
import { useSidebarContext } from '@/hooks/geistdocs/use-sidebar'
5+
import { Button } from '../ui/button'
66

77
export const MobileMenu = () => {
8-
const { isOpen, setIsOpen } = useSidebarContext();
8+
const { isOpen, setIsOpen } = useSidebarContext()
99

1010
return (
1111
<Button
12-
className="xl:hidden"
12+
className='md:hidden'
1313
onClick={() => setIsOpen(!isOpen)}
14-
size="icon-sm"
15-
variant="ghost"
14+
size='icon-sm'
15+
variant='ghost'
1616
>
17-
<MenuIcon className="size-4" />
17+
<MenuIcon className='size-4' />
1818
</Button>
19-
);
20-
};
19+
)
20+
}

0 commit comments

Comments
 (0)