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.

10 lines 362 B
export interface GridClasses { /** Styles applied to the root element. */ root: string; /** Styles applied to the root element if `container={true}`. */ container: string; } export type GridClassKey = keyof GridClasses; export declare function getGridUtilityClass(slot: string): string; declare const gridClasses: GridClasses; export default gridClasses;