@mui/x-data-grid-pro
Version:
The Pro plan edition of the Data Grid components (MUI X).
15 lines (14 loc) • 454 B
TypeScript
import * as React from 'react';
import { GridRowId } from '@mui/x-data-grid';
interface GridDetailPanelProps extends Pick<React.HTMLAttributes<HTMLDivElement>, 'className' | 'children'> {
/**
* The row ID that this panel belongs to.
*/
rowId: GridRowId;
/**
* The panel height.
*/
height: number | 'auto';
}
declare function GridDetailPanel(props: GridDetailPanelProps): React.JSX.Element;
export { GridDetailPanel };