6 lines
216 B
TypeScript
Executable File
6 lines
216 B
TypeScript
Executable File
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)
|