UNPKG

@mui/x-data-grid

Version:

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

11 lines 497 B
import * as React from 'react'; import type { GridBaseIconProps } from "../models/gridSlotsComponentsProps.js"; import type { GridSortDirection } from "../models/gridSortModel.js"; export interface GridColumnUnsortedIconProps extends GridBaseIconProps { sortingOrder: GridSortDirection[]; } declare function GridColumnUnsortedIcon(props: GridColumnUnsortedIconProps): React.JSX.Element | null; declare namespace GridColumnUnsortedIcon { var propTypes: any; } export { GridColumnUnsortedIcon };