import * as React from 'react'; import { css } from '@patternfly/react-styles'; import styles from '@patternfly/react-styles/css/components/DataList/data-list'; export interface DataListItemCellsProps extends React.HTMLProps { /** Additional classes added to the DataList item Content Wrapper. Children should be one ore more nodes */ className?: string; /** Array of nodes that are rendered one after the other. */ dataListCells?: React.ReactNode; /** Id for the row */ rowid?: string; } export const DataListItemCells: React.FunctionComponent = ({ className = '', dataListCells, // eslint-disable-next-line @typescript-eslint/no-unused-vars rowid = '', ...props }: DataListItemCellsProps) => (
{dataListCells}
); DataListItemCells.displayName = 'DataListItemCells';