Files
bot/apps/builder/src/components/MotionStack.tsx
Baptiste Arnaud 8ac3784c0f Add an update notification popup
Appears when a new version of Typebot is available

Closes #312
2023-02-15 18:05:19 +01:00

13 lines
413 B
TypeScript

import { forwardRef, Stack, StackProps } from '@chakra-ui/react'
import { motion, MotionProps, isValidMotionProp } from 'framer-motion'
export const MotionStack = motion(
forwardRef<MotionProps & StackProps, 'div'>((props, ref) => {
const chakraProps = Object.fromEntries(
Object.entries(props).filter(([key]) => !isValidMotionProp(key))
)
return <Stack ref={ref} {...chakraProps} />
})
)