UNPKG

@mui/x-data-grid-pro

Version:

The Pro plan edition of the MUI X Data Grid components.

14 lines 444 B
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 | null; export { GridDetailPanel };