import type { HTMLChakraProps } from '@chakra-ui/react'
import { chakra } from '@chakra-ui/react'
import type { HTMLMotionProps } from 'framer-motion'
import { motion } from 'framer-motion'
import { Merge } from '../../../types/merge'
type MotionBoxProps = Merge, HTMLMotionProps<'div'>>
const MotionBox: React.FC = motion(chakra.div)
export default MotionBox