UNPKG

531 BTypeScriptView Raw
1export interface CardMediaClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the root element if `component="video, audio, picture, iframe, or img"`. */
5 media: string;
6 /** Styles applied to the root element if `component="picture or img"`. */
7 img: string;
8}
9export type CardMediaClassKey = keyof CardMediaClasses;
10export declare function getCardMediaUtilityClass(slot: string): string;
11declare const cardMediaClasses: CardMediaClasses;
12export default cardMediaClasses;