UNPKG

@mui/x-data-grid

Version:

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

16 lines (15 loc) 627 B
import * as React from 'react'; import { GridSortDirection } from '../../models/gridSortModel'; export interface GridColumnHeaderSortIconProps { field: string; direction: GridSortDirection; index: number | undefined; sortingOrder: readonly GridSortDirection[]; disabled?: boolean; } declare function GridColumnHeaderSortIconRaw(props: GridColumnHeaderSortIconProps): React.JSX.Element | null; declare namespace GridColumnHeaderSortIconRaw { var propTypes: any; } declare const GridColumnHeaderSortIcon: React.MemoExoticComponent<typeof GridColumnHeaderSortIconRaw>; export { GridColumnHeaderSortIcon };