import React from "react"; import { Button, Flex } from "@chakra-ui/core"; import { motion } from "framer-motion"; const AnimatedFlex = motion.custom(Flex); export default React.forwardRef(({ onClick, side, children, ...props }, ref) => { return ( ); });