@material-ui/core
Version:
React components that implement Google's Material Design.
46 lines (40 loc) • 1.24 kB
TypeScript
import * as React from 'react';
import { ExtendButtonBase, ExtendButtonBaseTypeMap } from '../ButtonBase';
import { SvgIconProps } from '../SvgIcon';
import { OverrideProps } from '../OverridableComponent';
export type TableSortLabelTypeMap<
P = {},
D extends React.ElementType = 'span'
> = ExtendButtonBaseTypeMap<{
props: P & {
active?: boolean;
direction?: 'asc' | 'desc';
hideSortIcon?: boolean;
IconComponent?: React.ComponentType<{ className: string }>;
};
defaultComponent: D;
classKey: TableSortLabelClassKey;
}>;
/**
* A button based label for placing inside `TableCell` for column sorting.
* Demos:
*
* - [Tables](https://mui.com/components/tables/)
*
* API:
*
* - [TableSortLabel API](https://mui.com/api/table-sort-label/)
* - inherits [ButtonBase API](https://mui.com/api/button-base/)
*/
declare const TableSortLabel: ExtendButtonBase<TableSortLabelTypeMap>;
export type TableSortLabelClassKey =
| 'root'
| 'active'
| 'icon'
| 'iconDirectionDesc'
| 'iconDirectionAsc';
export type TableSortLabelProps<
D extends React.ElementType = TableSortLabelTypeMap['defaultComponent'],
P = {}
> = OverrideProps<TableSortLabelTypeMap<P, D>, D>;
export default TableSortLabel;