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.

12 lines 518 B
export interface CardMediaClasses { /** Styles applied to the root element. */ root: string; /** Styles applied to the root element if `component="video, audio, picture, iframe, or img"`. */ media: string; /** Styles applied to the root element if `component="picture or img"`. */ img: string; } export type CardMediaClassKey = keyof CardMediaClasses; export declare function getCardMediaUtilityClass(slot: string): string; declare const cardMediaClasses: CardMediaClasses; export default cardMediaClasses;