import { type ForwardRefRenderFunction, forwardRef, type ReactNode, } from 'react'; import { ListItem, type ListItemProps } from '../../../atoms'; export type NavItemProps = Omit & { /** * The nav item contents. */ children: ReactNode; }; const NavItemWithRef: ForwardRefRenderFunction = ( { children, ...props }, ref ) => ( {children} ); export const NavItem = forwardRef(NavItemWithRef);