import Backdrop from "../Sidebar/Backdrop" import { motion } from 'framer-motion' import { GrTrophy } from "react-icons/gr"; import '../../styles/Messages.css' const dropIn = { hidden: { y: "-100vh", }, visible: { y: "0", }, exit: { y: "-100vh", }, }; function YellowAlert ({handleClose, text}) { return( e.stopPropagation()} className="yellowAlert" variant={dropIn} initial="hidden" animate="visible" exit="exit" >

{text}

{setTimeout(handleClose, 3000)}
) } export default YellowAlert