mirror of https://github.com/mkrhere/pw2
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
633 B
33 lines
633 B
import React from "react";
|
|
import { motion } from "framer-motion";
|
|
|
|
const RevealChildren: React.FunctionComponent<{
|
|
type: "div" | "span" | "li";
|
|
children: React.ReactChild[];
|
|
show: boolean;
|
|
}> = ({ type, children: items, show = false, ...props }) => {
|
|
const Comp = motion[type];
|
|
const opacity = show ? 1 : 0;
|
|
const y = show ? 0 : -2;
|
|
|
|
return (
|
|
<>
|
|
{items.map((item, i) => (
|
|
<Comp
|
|
initial={{ opacity: 0, y: -2 }}
|
|
animate={{
|
|
opacity,
|
|
y: y * i,
|
|
transition: {
|
|
delay: i * 0.01,
|
|
},
|
|
}}
|
|
{...props}>
|
|
{item}
|
|
</Comp>
|
|
))}
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default RevealChildren;
|
|
|