@thehappycoder/react-responsive-pagination
Version:
React component for responsive pagination
10 lines (9 loc) • 363 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
function createNavWidthCalculator(widths) {
return function navWidthCalculator(type, enabled) {
var widthsForType = widths[type];
return enabled ? widthsForType.disabled : widthsForType.disabled;
};
}
exports.createNavWidthCalculator = createNavWidthCalculator;