UNPKG

691 BTypeScriptView Raw
1import * as React from 'react';
2import { DataListWrapModifier } from './DataList';
3export interface DataListItemRowProps extends Omit<React.HTMLProps<HTMLDivElement>, 'children'> {
4 /** Content rendered inside the DataListItemRow */
5 children: React.ReactNode;
6 /** Additional classes added to the DataListItemRow */
7 className?: string;
8 /** Id for the row item */
9 rowid?: string;
10 /** Determines which wrapping modifier to apply to the DataListItemRow */
11 wrapModifier?: DataListWrapModifier | 'nowrap' | 'truncate' | 'breakWord';
12}
13export declare const DataListItemRow: React.FunctionComponent<DataListItemRowProps>;
14//# sourceMappingURL=DataListItemRow.d.ts.map
\No newline at end of file