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