import React from 'react' import { HiX } from 'react-icons/hi' export default function Modal({ isOpen, toggle = () => {}, children, title = '', maxW = '2', }) { return (

{title}

{children}
) }