import { FaTimes } from "react-icons/fa"; export const Modal = ({ isOpen, onClose, children }) => { if (!isOpen) { return null; } return (