An animation library based on framer-motion.
npm install --save-dev svelte-motion
Corresponding to a MotionDiv
in framer-motion is this:
import { Motion } from 'svelte-motion'
<Motion let:motion><div use:motion/></Motion>
For svg elements like 'g', 'path' or 'circle', use:
<Motion let:motion isSVG><g use:motion/></Motion>