UNPKG

react-native-ui-lib

Version:

[![SWUbanner](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner-direct.svg)](https://stand-with-ukraine.pp.ua)

15 lines (14 loc) 410 B
import React from 'react'; import { Modal } from 'react-native'; const HighlighterOverlayView = props => { const { visible, onRequestClose, children } = props; return <Modal visible={!!visible} animationType={'fade'} transparent onRequestClose={() => onRequestClose?.()}> {children} </Modal>; }; HighlighterOverlayView.displayName = 'IGNORE'; export default HighlighterOverlayView;