UNPKG

materialuiupgraded

Version:

Material-UI's workspace package

24 lines (19 loc) 645 B
import * as React from 'react'; import { StandardProps } from '..'; import { ButtonBaseProps } from '../ButtonBase'; import { SvgIconProps } from '../SvgIcon'; export interface TableSortLabelProps extends StandardProps<ButtonBaseProps, TableSortLabelClassKey> { active?: boolean; direction?: 'asc' | 'desc'; hideSortIcon?: boolean; IconComponent?: React.ComponentType<SvgIconProps>; } export type TableSortLabelClassKey = | 'root' | 'active' | 'icon' | 'iconDirectionDesc' | 'iconDirectionAsc'; declare const TableSortLabel: React.ComponentType<TableSortLabelProps>; export default TableSortLabel;