2
0
Files
bot/apps/landing-page/components/common/Navbar/MotionBox.tsx

6 lines
216 B
TypeScript
Raw Normal View History

import { Box, BoxProps } from '@chakra-ui/react'
import { HTMLMotionProps, motion } from 'framer-motion'
export type MotionBoxProps = BoxProps & HTMLMotionProps<'div'>
export const MotionBox = motion<BoxProps>(Box)