import React from 'react' import { motion, usePresence } from 'framer-motion' import './bubble.css' const transition = { type: 'spring', stiffness: 500, damping: 50, default: { duration: 0.4 } } const Bubble = ({ id, children, sender, dy, fillColour, strokeColour }) => { const [isPresent, safeToRemove] = usePresence() const animations = { layout: true, initial: 'out', style: { position: 'static' }, animate: 'in', variants: { in: { opacity: 1, translateY: 0 }, out: { opacity: 1, translateY: `${dy}px` } }, exit: { opacity: 0, translateY: 0 }, onAnimationComplete: () => !isPresent && safeToRemove(), transition } return (
{children}
) } export default Bubble