import * as React from 'react'; import classNames from 'classnames'; import { ComponentClassNames } from '../shared/constants'; import { ForwardRefPrimitive, Primitive, BaseTableFootProps, TableFootProps, } from '../types'; import { View } from '../View'; const TableFootPrimitive: Primitive = ( { children, className, ...rest }, ref ) => ( {children} ); export const TableFoot: ForwardRefPrimitive = React.forwardRef(TableFootPrimitive); TableFoot.displayName = 'TableFoot';