interface GridColumnHeaderSortIconProps {
    direction: GridSortDirection;
    disabled?: boolean;
    field: string;
    index: undefined | number;
    sortingOrder: readonly GridSortDirection[];
}

Properties

disabled?: boolean
field: string
index: undefined | number
sortingOrder: readonly GridSortDirection[]