reablocks
Version:
Component library for React
28 lines (27 loc) • 652 B
TypeScript
export interface CalloutTheme {
base: {
common: string;
variant: {
default: string;
success: string;
error: string;
warning: string;
info: string;
[key: string]: string;
};
};
icon: {
common: string;
variant: {
default: string;
success: string;
error: string;
warning: string;
info: string;
[key: string]: string;
};
};
text: string;
}
export declare const calloutTheme: CalloutTheme;
export declare const legacyCalloutTheme: CalloutTheme;