UNPKG

framer-motion

Version:

A simple and powerful JavaScript animation library

13 lines (10 loc) 306 B
import { motionComponentSymbol } from './symbol.mjs'; /** * Checks if a component is a `motion` component. */ function isMotionComponent(component) { return (component !== null && typeof component === "object" && motionComponentSymbol in component); } export { isMotionComponent };