import React from 'react' import { type NavItemAnchor } from '../../config' import { LevelStateContext } from '../../context' import { CloseButton } from '../../icons' import { NavAnchor } from './NavAnchor' type Props = { entry: NavItemAnchor onClose?: () => void } export function NavBarLogo({ entry, onClose }: Props) { const { reset } = React.useContext(LevelStateContext) const { Icon } = entry return (