UNPKG

567 BTypeScriptView Raw
1import * as React from 'react';
2export interface DataListItemCellsProps extends React.HTMLProps<HTMLDivElement> {
3 /** Additional classes added to the DataList item Content Wrapper. Children should be one ore more <DataListCell> nodes */
4 className?: string;
5 /** Array of <DataListCell> nodes that are rendered one after the other. */
6 dataListCells?: React.ReactNode;
7 /** Id for the row */
8 rowid?: string;
9}
10export declare const DataListItemCells: React.FunctionComponent<DataListItemCellsProps>;
11//# sourceMappingURL=DataListItemCells.d.ts.map
\No newline at end of file