@mui/x-data-grid
Version:
The Community plan edition of the MUI X Data Grid components.
11 lines • 499 B
text/typescript
import * as React from 'react';
import type { GridBaseIconProps } from "../models/gridSlotsComponentsProps.mjs";
import type { GridSortDirection } from "../models/gridSortModel.mjs";
export interface GridColumnUnsortedIconProps extends GridBaseIconProps {
sortingOrder: GridSortDirection[];
}
declare function GridColumnUnsortedIcon(props: GridColumnUnsortedIconProps): React.JSX.Element | null;
declare namespace GridColumnUnsortedIcon {
var propTypes: any;
}
export { GridColumnUnsortedIcon };