import { useTheme } from '@emotion/react'; import { motion } from 'framer-motion'; type AnimatedTranslationProps = { children: React.ReactNode; }; export const AnimatedTranslation = ({ children }: AnimatedTranslationProps) => { const theme = useTheme(); return ( {children} ); };