reablocks
Version:
Component library for React
14 lines (13 loc) • 450 B
TypeScript
export interface CardTheme {
/** CSS class applied to the root card container. */
base: string;
/** CSS class applied when padding is disabled. */
disablePadding: string;
/** CSS class applied to the card header. */
header: string;
/** CSS class applied to the header text. */
headerText: string;
/** CSS class applied to the card content area. */
content: string;
}
export declare const cardTheme: CardTheme;