import * as 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 ( ); } ); export default FooterButton;