summaryrefslogtreecommitdiff
path: root/src/components/ui/AnimateOnLoad.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ui/AnimateOnLoad.jsx')
-rw-r--r--src/components/ui/AnimateOnLoad.jsx25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/components/ui/AnimateOnLoad.jsx b/src/components/ui/AnimateOnLoad.jsx
deleted file mode 100644
index fb9919e1..00000000
--- a/src/components/ui/AnimateOnLoad.jsx
+++ /dev/null
@@ -1,25 +0,0 @@
-import classNames from 'classnames'
-import { motion } from 'framer-motion'
-
-/**
- * Animate On Load
- * @param {object} props
- * @param {string} props.className - Container class
- */
-const AnimateOnLoad = (props) => {
- const { className: propsClassName, children } = props
-
- const combinedClassName = classNames(propsClassName)
-
- return (
- <motion.div
- initial={{ opacity: 0 }}
- animate={{ opacity: 1, transition: { duration: 0.3 } }}
- className={combinedClassName}
- >
- {children}
- </motion.div>
- )
-}
-
-export default AnimateOnLoad