mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
42 lines
1015 B
JavaScript
42 lines
1015 B
JavaScript
"use strict";
|
|
|
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = exports.left = exports.bottom = exports.right = exports.top = exports.zIndex = exports.position = void 0;
|
|
|
|
var _style = _interopRequireDefault(require("./style"));
|
|
|
|
var _compose = _interopRequireDefault(require("./compose"));
|
|
|
|
var position = (0, _style.default)({
|
|
prop: 'position'
|
|
});
|
|
exports.position = position;
|
|
var zIndex = (0, _style.default)({
|
|
prop: 'zIndex',
|
|
themeKey: 'zIndex'
|
|
});
|
|
exports.zIndex = zIndex;
|
|
var top = (0, _style.default)({
|
|
prop: 'top'
|
|
});
|
|
exports.top = top;
|
|
var right = (0, _style.default)({
|
|
prop: 'right'
|
|
});
|
|
exports.right = right;
|
|
var bottom = (0, _style.default)({
|
|
prop: 'bottom'
|
|
});
|
|
exports.bottom = bottom;
|
|
var left = (0, _style.default)({
|
|
prop: 'left'
|
|
});
|
|
exports.left = left;
|
|
|
|
var _default = (0, _compose.default)(position, zIndex, top, right, bottom, left);
|
|
|
|
exports.default = _default; |