@zohodesk/components
Version:
Dot UI is a customizable React component library built to deliver a clean, accessible, and developer-friendly UI experience. It offers a growing set of reusable components designed to align with modern design systems and streamline application development
34 lines (33 loc) • 742 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.THUMB_RADIUS = exports.OFF_LABEL_RADIUS = exports.ITEMS_DIRECTION = exports.ALIGN_ITEMS = void 0;
var OFF_LABEL_RADIUS = {
small: '35.7%',
medium: '37.5%',
large: '38.9%',
xlarge: '40%'
};
exports.OFF_LABEL_RADIUS = OFF_LABEL_RADIUS;
var THUMB_RADIUS = {
small: '40%',
medium: '42.85%',
large: '44.45%',
xlarge: '45.45%'
};
exports.THUMB_RADIUS = THUMB_RADIUS;
var ITEMS_DIRECTION = {
start: 'row',
end: 'rowReverse',
top: 'column',
bottom: 'columnReverse'
};
exports.ITEMS_DIRECTION = ITEMS_DIRECTION;
var ALIGN_ITEMS = {
start: 'center',
end: 'center',
top: 'start',
bottom: 'start'
};
exports.ALIGN_ITEMS = ALIGN_ITEMS;