@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.
11 lines (10 loc) • 378 B
TypeScript
export interface Grid2Classes {
/** Styles applied to the root element. */
root: string;
/** Styles applied to the root element if `container={true}`. */
container: string;
}
export type Grid2ClassKey = keyof Grid2Classes;
export declare function getGrid2UtilityClass(slot: string): string;
declare const grid2Classes: Grid2Classes;
export default grid2Classes;