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