import * as classNames from 'classnames'; import * as React from 'react'; import { OptionalComponentPropAndHTMLAttributes } from '../../types'; export type TableRowProps = OptionalComponentPropAndHTMLAttributes; /** * Table row component with additional styles & functionality, used within a table head or body. * See the [Table](#table) section for a full example. */ const TableRow = (props: TableRowProps) => { const { className, children, component: Component = 'tr', ...remainingProps } = props; return ( {children} ); }; export default React.memo(TableRow);