import * as React from 'react'; import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/Table/table'; export interface TbodyProps extends React.HTMLProps { /** Content rendered inside the row group */ children?: React.ReactNode; /** Additional classes added to the element */ className?: string; /** Modifies the body to allow for expandable rows */ isExpanded?: boolean; /** @hide Forwarded ref */ innerRef?: React.Ref; /** Flag indicating the contains oddly striped rows. */ isOddStriped?: boolean; /** Flag indicating the contains evenly striped rows. */ isEvenStriped?: boolean; } const TbodyBase: React.FunctionComponent = ({ children, className, isExpanded, innerRef, isEvenStriped = false, isOddStriped = false, ...props }: TbodyProps) => ( {children} ); export const Tbody = React.forwardRef((props: TbodyProps, ref: React.Ref) => ( )); Tbody.displayName = 'Tbody';