import React from "react"; import PropTypes from "prop-types"; // Chakra imports import { Box, Flex } from "@chakra-ui/react"; function AuthCover(props) { const { children, image, ...rest } = props; return ( {children} ); } // PROPS AuthCover.propTypes = { image: PropTypes.any, }; export default AuthCover;