baseui
Version:
A React Component library implementing the Base design language
17 lines (14 loc) • 510 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ARROW_UP = exports.ARROW_RIGHT = exports.ARROW_LEFT = exports.ARROW_DOWN = void 0;
/*
Copyright (c) Uber Technologies, Inc.
This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
*/
const ARROW_UP = exports.ARROW_UP = 38;
const ARROW_DOWN = exports.ARROW_DOWN = 40;
const ARROW_LEFT = exports.ARROW_LEFT = 37;
const ARROW_RIGHT = exports.ARROW_RIGHT = 39;