motion
Re-exported from framer-motion. Use it for custom animations on any element.
import { motion } from '@appfunnel-dev/sdk/elements'
<motion.div
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.4 }}
>
Animated content
</motion.div>Last updated on