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