import React from "react"; import Modal from "react-modal"; import { useThemeUI, Close } from "theme-ui"; function StyledModal({ isOpen, onRequestClose, children, allowClose, style, ...props }) { const { theme } = useThemeUI(); return ( {children} {allowClose && ( )} ); } StyledModal.defaultProps = { allowClose: true, style: {}, }; export default StyledModal;