aboutsummaryrefslogtreecommitdiff
path: root/source/96/src/components/animations
diff options
context:
space:
mode:
Diffstat (limited to 'source/96/src/components/animations')
-rw-r--r--source/96/src/components/animations/FadeIn.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/source/96/src/components/animations/FadeIn.js b/source/96/src/components/animations/FadeIn.js
deleted file mode 100644
index 21589ce..0000000
--- a/source/96/src/components/animations/FadeIn.js
+++ /dev/null
@@ -1,17 +0,0 @@
-"use client";
-
-import { motion } from "motion/react";
-
-export default ({ children, props }) => {
- const { duration = 1, delay = 0 } = props || {};
-
- return (
- <motion.div
- initial={{ opacity: 0 }}
- animate={{ opacity: 1 }}
- transition={{ duration, delay }}
- >
- {children}
- </motion.div>
- );
-};