import React, { forwardRef } from 'react' import type { HTMLAttributes } from 'react' export interface NavbarRowProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: Cypress, Testing Library, and Jest). */ testId?: string } const NavbarRow = forwardRef(function NavbarRow( { children, testId = 'fs-navbar-row', ...otherProps }, ref ) { return (
{children}
) }) export default NavbarRow