import React, { forwardRef } from 'react' import type { HTMLAttributes } from 'react' export interface NavbarButtonsProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: Cypress, Testing Library, and Jest). */ testId?: string /** * Specifies whether the Search Input is expanded or not. */ searchExpanded: boolean } const NavbarButtons = forwardRef( function NavbarButtons( { children, searchExpanded, testId = 'fs-navbar-buttons', ...otherProps }, ref ) { return (
{children}
) } ) export default NavbarButtons