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