Mission Control Dashboard - Initial implementation
This commit is contained in:
13
node_modules/framer-motion/dist/es/motion/utils/is-motion-component.mjs
generated
vendored
Normal file
13
node_modules/framer-motion/dist/es/motion/utils/is-motion-component.mjs
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
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 };
|
||||
//# sourceMappingURL=is-motion-component.mjs.map
|
||||
Reference in New Issue
Block a user