File tree Expand file tree Collapse file tree 1 file changed +11
-11
lines changed
docs/components/geistdocs Expand file tree Collapse file tree 1 file changed +11
-11
lines changed Original file line number Diff line number Diff line change 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
77export 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+ }
You can’t perform that action at this time.
0 commit comments