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

{text}

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