@attio/react-native-bottom-sheet-toolbox
Version:
20 lines (19 loc) • 459 B
JavaScript
;
import { StyleSheet } from "react-native";
import Animated from "react-native-reanimated";
import { jsx as _jsx } from "react/jsx-runtime";
const styles = StyleSheet.create({
invisible: {
height: 0,
opacity: 0,
width: 0
}
});
export function InvisibleView(props) {
return /*#__PURE__*/_jsx(Animated.View, {
style: styles.invisible,
pointerEvents: "none",
...props
});
}
//# sourceMappingURL=invisible-view.js.map