UNPKG

@mui/x-data-grid

Version:

The Community plan edition of the Data Grid components (MUI X).

12 lines 630 B
import * as React from 'react'; import { SxProps, Theme } from '@mui/system'; export type GridToolbarContainerProps = React.HTMLAttributes<HTMLDivElement> & { sx?: SxProps<Theme>; }; /** * @deprecated Use the {@link https://mui.com/x/react-data-grid/components/toolbar/ Toolbar} component instead. This component will be removed in a future major release. */ declare const GridToolbarContainer: React.ForwardRefExoticComponent<GridToolbarContainerProps> | React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & { sx?: SxProps<Theme>; } & React.RefAttributes<HTMLDivElement>>; export { GridToolbarContainer };