import { Box, BoxProps, forwardRef, keyframes } from "@chakra-ui/react"; const animation = keyframes` 0% { background-position:0% 50%; } 50% { background-position:100% 50%; } 100% { background-position:0% 50%; } `; export const GradientContainer = forwardRef((props, ref) => ( ));