import CloseIcon from "@/icons/close.svg"; const BottomPopup = ({ active = false, title, children, closePopup = () => {} }) => { return ( <>

{ title }

{ children }
); }; export default BottomPopup;