wix-style-react
Version:
37 lines (36 loc) • 831 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.dataAttr = exports.dataHooks = exports.iconChildSize = exports.PRIORITY = exports.SKINS = void 0;
var SKINS = {
standard: 'standard',
dark: 'dark',
inverted: 'inverted',
destructive: 'destructive',
success: 'success'
};
exports.SKINS = SKINS;
var PRIORITY = {
primary: 'primary'
};
exports.PRIORITY = PRIORITY;
var iconChildSize = {
tiny: '18px',
small: '18px',
medium: '24px',
large: '24px'
};
exports.iconChildSize = iconChildSize;
var prefix = 'toggle-button';
var dataHooks = {
label: "".concat(prefix, "-label"),
tooltip: "".concat(prefix, "-tooltip")
};
exports.dataHooks = dataHooks;
var dataAttr = {
selected: 'data-selected',
skin: 'data-skin',
placement: 'data-placement'
};
exports.dataAttr = dataAttr;