import { ReactNode } from 'react' import { motion } from 'framer-motion' import { Separator } from './ui/separator' type FormWrapperProps = { title: string description: string children: ReactNode } const formVariants = { hidden: { opacity: 0, x: -50, }, visible: { opacity: 1, x: 0, }, exit: { opacity: 0, x: 50, transition: { ease: 'easeOut', }, }, } const FormWrapper = ({ title, description, children }: FormWrapperProps) => { return (

{title}

{description}

{children}
) } export default FormWrapper