UNPKG

@harmeet9013/transitions

Version:
20 lines (18 loc) 421 B
import { motion } from "framer-motion"; export const Fade = ({ show = true, duration = 0.4, className = "", children, }) => { return ( <motion.div initial={{ opacity: 0 }} animate={{ opacity: show ? 1 : 0 }} transition={{ duration: duration || 0.4 }} className={className || ""} > {children} </motion.div> ); };