import { ChevronDownIcon } from "@chakra-ui/icons"; import { Button, MenuButton, MenuButtonProps, forwardRef, } from "@chakra-ui/react"; export const NavPopoverTrigger = forwardRef( ({ children, ...props }, ref) => { return ( } size="md" variant="link" {...props} > {children} ); } );