import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/Table/table'; import stylesTreeView from '@patternfly/react-styles/css/components/Table/table-tree-view'; import { RowWrapperProps } from './RowWrapper'; import { Tr } from './Tr'; export const TreeRowWrapper: React.FunctionComponent = ({ className, // eslint-disable-next-line @typescript-eslint/no-unused-vars rowProps, row, ...props }: RowWrapperProps) => { const { 'aria-level': level, 'aria-posinset': posinset, 'aria-setsize': setsize, isExpanded, isDetailsExpanded, isHidden } = row.props; return ( ); }; TreeRowWrapper.displayName = 'TreeRowWrapper';