import { FC } from 'react' import { motion, AnimatePresence } from 'framer-motion' type Props = { slide?: number isActive: boolean key: string } export const SlideIn: FC = ({ children, isActive = false, slide = 30, key = 'auniquestring', }) => ( {isActive && ( {children} )} )