wix-style-react
Version:
23 lines • 592 B
JavaScript
export var THEMES = {
standard: 'standard',
error: 'error',
success: 'success',
warning: 'warning',
premium: 'premium'
};
export var ACTION_BUTTON_TYPES = {
textLink: 'textLink',
button: 'button'
};
var prefix = 'notification';
export var dataHooks = {
notificationContent: "".concat(prefix, "-content"),
notificationCloseButton: "".concat(prefix, "-close-button"),
notificationLabel: "".concat(prefix, "-label"),
notificationCtaButton: "".concat(prefix, "-cta-button")
};
export var TYPE_POSITIONS_MAP = {
relative: 'global',
absolute: 'local',
fixed: 'sticky'
};