@mui/base
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
28 lines (27 loc) • 1.22 kB
TypeScript
export interface TablePaginationClasses {
/** Class name applied to the root element. */
root: string;
/** Class name applied to the Toolbar component. */
toolbar: string;
/** Class name applied to the spacer element. */
spacer: string;
/** Class name applied to the select label Typography element. */
selectLabel: string;
/** Class name applied to the Select component `root` element. */
selectRoot: string;
/** Class name applied to the Select component `select` class. */
select: string;
/** Class name applied to the Select component `icon` class. */
selectIcon: string;
/** Class name applied to the Select component `root` element. */
input: string;
/** Class name applied to the MenuItem component. */
menuItem: string;
/** Class name applied to the displayed rows Typography element. */
displayedRows: string;
/** Class name applied to the internal `TablePaginationActions` component. */
actions: string;
}
export type TablePaginationClassKey = keyof TablePaginationClasses;
export declare function getTablePaginationUtilityClass(slot: string): string;
export declare const tablePaginationClasses: TablePaginationClasses;