import { type ForwardRefRenderFunction, type HTMLAttributes, type ReactNode, forwardRef, } from 'react'; export type NavProps = HTMLAttributes & { /** * The nav contents. */ children: ReactNode; }; const NavWithRef: ForwardRefRenderFunction = ( props, ref ) =>