@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.
13 lines (12 loc) • 539 B
TypeScript
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 declare type CardMediaClassKey = keyof CardMediaClasses;
export declare function getCardMediaUtilityClass(slot: string): string;
declare const cardMediaClasses: CardMediaClasses;
export default cardMediaClasses;