react-range
Version:
Range input. Slides in all directions.
11 lines (10 loc) • 348 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Direction = void 0;
var Direction;
(function (Direction) {
Direction["Right"] = "to right";
Direction["Left"] = "to left";
Direction["Down"] = "to bottom";
Direction["Up"] = "to top";
})(Direction = exports.Direction || (exports.Direction = {}));