import { Flex, Text } from '@chakra-ui/react'; import { motion } from 'framer-motion'; import { memo, useRef } from 'react'; import { v4 as uuidv4 } from 'uuid'; type Props = { isOver: boolean; label?: string; }; export const IAIDropOverlay = (props: Props) => { const { isOver, label = 'Drop' } = props; const motionId = useRef(uuidv4()); return ( {label} ); }; export default memo(IAIDropOverlay);