UNPKG

@mui/material

Version:

Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.

17 lines (16 loc) 709 B
export interface TableSortLabelClasses { /** Styles applied to the root element. */ root: string; /** State class applied to the root element if `active={true}`. */ active: string; /** Styles applied to the icon component. */ icon: string; /** Styles applied to the icon component if `direction="desc"`. */ iconDirectionDesc: string; /** Styles applied to the icon component if `direction="asc"`. */ iconDirectionAsc: string; } export type TableSortLabelClassKey = keyof TableSortLabelClasses; export declare function getTableSortLabelUtilityClass(slot: string): string; declare const tableSortLabelClasses: TableSortLabelClasses; export default tableSortLabelClasses;