UNPKG

react-native-simi-comps

Version:
7 lines 496 B
import React from "react"; import { Modal as DefaultModal } from "react-native"; export default function Modal(_a) { var _b = _a.visible, visible = _b === void 0 ? false : _b, _c = _a.transparent, transparent = _c === void 0 ? false : _c, children = _a.children, close = _a.close; return (React.createElement(DefaultModal, { animationType: transparent ? "none" : "slide", transparent: transparent, visible: visible, onRequestClose: close }, children)); } //# sourceMappingURL=Modal.js.map