@mui/x-data-grid-premium
Version:
The Premium plan edition of the MUI X Data Grid Components.
10 lines • 358 B
TypeScript
import * as React from 'react';
export type ResizablePanelProps = React.HTMLAttributes<HTMLDivElement> & {
/**
* The direction to resize the panel.
* @default 'horizontal'
*/
direction?: 'horizontal' | 'vertical';
};
declare function ResizablePanel(props: ResizablePanelProps): import("react/jsx-runtime").JSX.Element;
export { ResizablePanel };