{"ast":null,"code":"function _inheritsLoose(subClass, superClass) {\n  subClass.prototype = Object.create(superClass.prototype);\n  subClass.prototype.constructor = subClass;\n\n  _setPrototypeOf(subClass, superClass);\n}\n\nfunction _setPrototypeOf(o, p) {\n  _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {\n    o.__proto__ = p;\n    return o;\n  };\n\n  return _setPrototypeOf(o, p);\n}\n\nimport View from \"../../exports/View\";\nimport React from 'react';\n\nvar UnimplementedView = function (_React$Component) {\n  _inheritsLoose(UnimplementedView, _React$Component);\n\n  function UnimplementedView() {\n    return _React$Component.apply(this, arguments) || this;\n  }\n\n  var _proto = UnimplementedView.prototype;\n\n  _proto.setNativeProps = function setNativeProps() {};\n\n  _proto.render = function render() {\n    return React.createElement(View, {\n      style: [unimplementedViewStyles, this.props.style]\n    }, this.props.children);\n  };\n\n  return UnimplementedView;\n}(React.Component);\n\nvar unimplementedViewStyles = process.env.NODE_ENV !== 'production' ? {\n  alignSelf: 'flex-start',\n  borderColor: 'red',\n  borderWidth: 1\n} : {};\nexport default UnimplementedView;","map":{"version":3,"sources":["/Users/rohitsingh/Documents/projects/new-nativebase-setup/NativeBase/example/node_modules/react-native-web/dist/modules/UnimplementedView/index.js"],"names":["_inheritsLoose","subClass","superClass","prototype","Object","create","constructor","_setPrototypeOf","o","p","setPrototypeOf","__proto__","View","React","UnimplementedView","_React$Component","apply","arguments","_proto","setNativeProps","render","createElement","style","unimplementedViewStyles","props","children","Component","process","env","NODE_ENV","alignSelf","borderColor","borderWidth"],"mappings":"AAAA,SAASA,cAAT,CAAwBC,QAAxB,EAAkCC,UAAlC,EAA8C;AAAED,EAAAA,QAAQ,CAACE,SAAT,GAAqBC,MAAM,CAACC,MAAP,CAAcH,UAAU,CAACC,SAAzB,CAArB;AAA0DF,EAAAA,QAAQ,CAACE,SAAT,CAAmBG,WAAnB,GAAiCL,QAAjC;;AAA2CM,EAAAA,eAAe,CAACN,QAAD,EAAWC,UAAX,CAAf;AAAwC;;AAE7L,SAASK,eAAT,CAAyBC,CAAzB,EAA4BC,CAA5B,EAA+B;AAAEF,EAAAA,eAAe,GAAGH,MAAM,CAACM,cAAP,IAAyB,SAASH,eAAT,CAAyBC,CAAzB,EAA4BC,CAA5B,EAA+B;AAAED,IAAAA,CAAC,CAACG,SAAF,GAAcF,CAAd;AAAiB,WAAOD,CAAP;AAAW,GAAxG;;AAA0G,SAAOD,eAAe,CAACC,CAAD,EAAIC,CAAJ,CAAtB;AAA+B;;AAU1K,OAAOG,IAAP;AACA,OAAOC,KAAP,MAAkB,OAAlB;;AAKA,IAAIC,iBAAiB,GAAgB,UAAUC,gBAAV,EAA4B;AAC/Df,EAAAA,cAAc,CAACc,iBAAD,EAAoBC,gBAApB,CAAd;;AAEA,WAASD,iBAAT,GAA6B;AAC3B,WAAOC,gBAAgB,CAACC,KAAjB,CAAuB,IAAvB,EAA6BC,SAA7B,KAA2C,IAAlD;AACD;;AAED,MAAIC,MAAM,GAAGJ,iBAAiB,CAACX,SAA/B;;AAEAe,EAAAA,MAAM,CAACC,cAAP,GAAwB,SAASA,cAAT,GAA0B,CACjD,CADD;;AAGAD,EAAAA,MAAM,CAACE,MAAP,GAAgB,SAASA,MAAT,GAAkB;AAChC,WAAoBP,KAAK,CAACQ,aAAN,CAAoBT,IAApB,EAA0B;AAC5CU,MAAAA,KAAK,EAAE,CAACC,uBAAD,EAA0B,KAAKC,KAAL,CAAWF,KAArC;AADqC,KAA1B,EAEjB,KAAKE,KAAL,CAAWC,QAFM,CAApB;AAGD,GAJD;;AAMA,SAAOX,iBAAP;AACD,CAnBoC,CAmBnCD,KAAK,CAACa,SAnB6B,CAArC;;AAqBA,IAAIH,uBAAuB,GAAGI,OAAO,CAACC,GAAR,CAAYC,QAAZ,KAAyB,YAAzB,GAAwC;AACpEC,EAAAA,SAAS,EAAE,YADyD;AAEpEC,EAAAA,WAAW,EAAE,KAFuD;AAGpEC,EAAAA,WAAW,EAAE;AAHuD,CAAxC,GAI1B,EAJJ;AAKA,eAAelB,iBAAf","sourcesContent":["function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\n/**\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n * \n */\nimport View from '../../exports/View';\nimport React from 'react';\n/**\n * Common implementation for a simple stubbed view.\n */\n\nvar UnimplementedView = /*#__PURE__*/function (_React$Component) {\n  _inheritsLoose(UnimplementedView, _React$Component);\n\n  function UnimplementedView() {\n    return _React$Component.apply(this, arguments) || this;\n  }\n\n  var _proto = UnimplementedView.prototype;\n\n  _proto.setNativeProps = function setNativeProps() {// Do nothing.\n  };\n\n  _proto.render = function render() {\n    return /*#__PURE__*/React.createElement(View, {\n      style: [unimplementedViewStyles, this.props.style]\n    }, this.props.children);\n  };\n\n  return UnimplementedView;\n}(React.Component);\n\nvar unimplementedViewStyles = process.env.NODE_ENV !== 'production' ? {\n  alignSelf: 'flex-start',\n  borderColor: 'red',\n  borderWidth: 1\n} : {};\nexport default UnimplementedView;"]},"metadata":{},"sourceType":"module"}