reablocks
Version:
Component library for React
30 lines (29 loc) • 829 B
TypeScript
export interface CalloutTheme {
/** CSS classes applied to the root callout container, including per-variant styles. */
base: {
common: string;
variant: {
default: string;
success: string;
error: string;
warning: string;
info: string;
[key: string]: string;
};
};
/** CSS classes applied to the callout icon, including per-variant styles. */
icon: {
common: string;
variant: {
default: string;
success: string;
error: string;
warning: string;
info: string;
[key: string]: string;
};
};
/** CSS class applied to the callout text content. */
text: string;
}
export declare const calloutTheme: CalloutTheme;