import React, { forwardRef } from 'react' import type { HTMLAttributes, PropsWithChildren } from 'react' export interface TableFooterProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string } const TableFooter = forwardRef< HTMLTableSectionElement, PropsWithChildren >(function TableFooter( { children, testId = 'fs-table-footer', ...otherProps }, ref ) { return ( {children} ) }) export default TableFooter