@material-ui/core
Version:
React components that implement Google's Material Design.
24 lines (19 loc) • 622 B
TypeScript
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;