import * as React from 'react'; import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/Table/table'; export interface TheadProps extends React.HTMLProps { /** Content rendered inside the row group */ children?: React.ReactNode; /** Additional classes added to the element */ className?: string; /** Won't wrap the table head if true */ noWrap?: boolean; /** @hide Forwarded ref */ innerRef?: React.Ref; /** Indicates the contains a nested header */ hasNestedHeader?: boolean; } const TheadBase: React.FunctionComponent = ({ children, className, noWrap = false, innerRef, hasNestedHeader, ...props }: TheadProps) => ( {children} ); export const Thead = React.forwardRef((props: TheadProps, ref: React.Ref) => ( )); Thead.displayName = 'Thead';