import { chakra, Flex, Text, useColorModeValue } from '@chakra-ui/react'; import { RiMenu2Fill } from 'react-icons/ri'; import { LOCAL_NAVBAR_HEIGHT } from './constants'; const MenuFill = chakra(RiMenu2Fill); export type LocalNavbarProps = { onMenuClick: () => void; }; export const LocalNavbar = ({ onMenuClick }: LocalNavbarProps) => { const bg = useColorModeValue('white', 'gray.800'); return ( { window.scrollTo({ top: 0, left: 0, behavior: 'smooth' }); }} fontSize="0.8em" > Back to top ); };