@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
14 lines • 691 B
TypeScript
/// <reference types="react" />
import { DataListWrapModifier } from './DataList';
export interface DataListItemRowProps extends Omit<React.HTMLProps<HTMLDivElement>, 'children'> {
/** Content rendered inside the DataListItemRow */
children: React.ReactNode;
/** Additional classes added to the DataListItemRow */
className?: string;
/** Id for the row item */
rowid?: string;
/** Determines which wrapping modifier to apply to the DataListItemRow */
wrapModifier?: DataListWrapModifier | 'nowrap' | 'truncate' | 'breakWord';
}
export declare const DataListItemRow: React.FunctionComponent<DataListItemRowProps>;
//# sourceMappingURL=DataListItemRow.d.ts.map