import * as React from 'react' import { Grid, GridItem, Icon, useDisclosure, Button, Drawer, DrawerOverlay, DrawerContent, DrawerCloseButton, DrawerBody, Image, useColorModeValue, Center, Flex, } from '@chakra-ui/react' import LogoLight from '../../logos/logo-light.svg' import LogoDark from '../../logos/logo-dark.svg' import { FaSearch } from 'react-icons/fa' import { SearchInputs } from '../header/SearchInputs' //Content for tool tips const toolTipInOut = { heading: `What was that method? Let's find it!`, content: `Sometimes you know a method exists but not what it's called. Use this to find all the methods that match an expected input and output!`, } const toolTipName = { heading: `Looking for a specific method?`, content: `Search for methods by name or description.`, } export let NavBarButton = ({ sidebar, dispatch, state, responsive }) => { let { isOpen, onClose, onToggle } = useDisclosure({ defaultIsOpen: false, }) return (