From cbc17db44c18a19702938b3fe70ea3de81d326ea Mon Sep 17 00:00:00 2001 From: "Alex Pooley (@zuedev)" Date: Mon, 1 Dec 2025 00:45:09 +0000 Subject: make it work --- source/96/src/components/animations/FadeIn.js | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 source/96/src/components/animations/FadeIn.js (limited to 'source/96/src/components') diff --git a/source/96/src/components/animations/FadeIn.js b/source/96/src/components/animations/FadeIn.js new file mode 100644 index 0000000..21589ce --- /dev/null +++ b/source/96/src/components/animations/FadeIn.js @@ -0,0 +1,17 @@ +"use client"; + +import { motion } from "motion/react"; + +export default ({ children, props }) => { + const { duration = 1, delay = 0 } = props || {}; + + return ( + + {children} + + ); +}; -- cgit v1.2.3