UNPKG

@chayns-components/swipeable-wrapper

Version:

A set of beautiful React components for developing your own applications with chayns.

55 lines (53 loc) 1.98 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.StyledSwipeableActionButton = exports.StyledMotionSwipeableAction = void 0; var _react = require("motion/react"); var _styledComponents = _interopRequireWildcard(require("styled-components")); function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function (e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (const t in e) "default" !== t && {}.hasOwnProperty.call(e, t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, t)) && (i.get || i.set) ? o(f, t, i) : f[t] = e[t]); return f; })(e, t); } const StyledMotionSwipeableAction = exports.StyledMotionSwipeableAction = (0, _styledComponents.default)(_react.motion.div)` background-color: ${({ $backgroundColor }) => $backgroundColor}; display: flex; height: 100%; position: absolute; top: 0; width: 200vw; ${({ $position }) => { if ($position === 'left') { return (0, _styledComponents.css)` justify-content: flex-end; right: 100%; `; } return (0, _styledComponents.css)` justify-content: flex-start; left: 100%; `; }} `; const StyledSwipeableActionButton = exports.StyledSwipeableActionButton = _styledComponents.default.button` align-items: center; appearance: none; background: none; box-shadow: none; color: ${({ $color }) => $color}; display: flex; flex-direction: column; font-size: 88%; gap: 4px; height: 100%; justify-content: center; margin: 0; padding: 0; width: ${({ $width }) => $width}; `; //# sourceMappingURL=SwipeableAction.styles.js.map