import { Box, Stack, Text } from '@chakra-ui/react' import * as React from 'react' interface NavGroupProps { label: string children: React.ReactNode } export const NavGroup = (props: NavGroupProps) => { const { label, children } = props return ( {label} {children} ) }