reablocks
Version:
Component library for React
34 lines (33 loc) • 836 B
TypeScript
export interface NotificationTheme {
container: string;
positions: string;
notification: {
base: string;
variants: {
success: {
base: string;
icon?: string;
};
error: {
base: string;
icon?: string;
};
warning: {
base: string;
icon?: string;
};
info: {
base: string;
icon?: string;
};
};
header: string;
content: string;
body: string;
closeContainer: string;
action: string;
closeButton: string;
};
}
export declare const notificationTheme: NotificationTheme;
export declare const legacyNotificationTheme: NotificationTheme;