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