omnipay-savings-sdk
Version:
Omnipay Savings SDK
23 lines (22 loc) • 1.05 kB
JavaScript
;
var __rest = (this && this.__rest) || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.SmartImage = void 0;
const jsx_runtime_1 = require("react/jsx-runtime");
const react_native_1 = require("react-native");
const SmartImage = (_a) => {
var { source, fallback } = _a, props = __rest(_a, ["source", "fallback"]);
const isRemote = typeof source === 'object' && 'uri' in source;
return ((0, jsx_runtime_1.jsx)(react_native_1.Image, Object.assign({ source: isRemote && !source.uri ? fallback : source }, props)));
};
exports.SmartImage = SmartImage;