import { HStack, Image, Text } from '@chakra-ui/react'; import React from 'react'; const SignUpButton = ({ bg, logo, type, text, hoverBg, color, onClick }) => { return ( icon {type} {text} ); }; export default SignUpButton;