1
0
Fork 0
react-playground/node_modules/@mui/material/Grid/gridClasses.d.ts

10 lines
No EOL
362 B
TypeScript

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;