@madeja-studio/telar
Version:
UI component library by Madeja Studio
17 lines (16 loc) • 399 B
JavaScript
;
import { Portal as GorhomPortal } from '@gorhom/portal';
import { Overlay } from "../Overlay/index.js";
import { jsx as _jsx } from "react/jsx-runtime";
export const Portal = ({
children,
...props
}) => {
return /*#__PURE__*/_jsx(GorhomPortal, {
...props,
children: /*#__PURE__*/_jsx(Overlay, {
children: children
})
});
};
//# sourceMappingURL=Portal.js.map