wix-style-react
Version:
29 lines (28 loc) • 581 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.PRIORITY = exports.SIZES = exports.SKINS = void 0;
var SKINS = {
standard: 'standard',
inverted: 'inverted',
destructive: 'destructive',
premium: 'premium',
dark: 'dark',
light: 'light',
transparent: 'transparent',
premiumLight: 'premium-light'
};
exports.SKINS = SKINS;
var SIZES = {
tiny: 'tiny',
small: 'small',
medium: 'medium',
large: 'large'
};
exports.SIZES = SIZES;
var PRIORITY = {
primary: 'primary',
secondary: 'secondary'
};
exports.PRIORITY = PRIORITY;