import { XMarkIcon } from "@heroicons/react/24/outline" import { AnimatePresence, motion } from "framer-motion" const transition = { ease: 'linear', duration: 0.2 } const BottomPopup = ({ children, active = false, title, close }) => ( <> { active && ( <>
{ title }
{ children }
) }
) export default BottomPopup