import { motion } from 'framer-motion' import { cn } from '@/lib/utils' import type { FC, ReactNode } from 'react' type Props = { children: ReactNode className?: string } export default (({ children, className }: Props) => ( {children} )) satisfies FC