You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
583 B
25 lines
583 B
import { Button } from '@/components/ui/button' |
|
import { DrawerClose } from '@/components/ui/drawer' |
|
import { cn } from '@/lib/utils' |
|
|
|
export default function DrawerMenuItem({ |
|
children, |
|
className, |
|
onClick |
|
}: { |
|
children: React.ReactNode |
|
className?: string |
|
onClick?: (e: React.MouseEvent) => void |
|
}) { |
|
return ( |
|
<DrawerClose className="w-full"> |
|
<Button |
|
onClick={onClick} |
|
className={cn('w-full p-6 justify-start text-lg gap-4 [&_svg]:size-5', className)} |
|
variant="ghost" |
|
> |
|
{children} |
|
</Button> |
|
</DrawerClose> |
|
) |
|
}
|
|
|