UNPKG

@mui/material

Version:

Quickly build beautiful React apps. MUI is a simple and customizable component library to build faster, beautiful, and more accessible React applications. Follow your own design system, or start with Material Design.

15 lines (14 loc) 560 B
export interface ListClasses { /** Styles applied to the root element. */ root: string; /** Styles applied to the root element unless `disablePadding={true}`. */ padding: string; /** Styles applied to the root element if dense. */ dense: string; /** Styles applied to the root element if a `subheader` is provided. */ subheader: string; } export declare type ListClassKey = keyof ListClasses; export declare function getListUtilityClass(slot: string): string; declare const listClasses: ListClasses; export default listClasses;