import { StyleSheet, Text, View} from 'react-native' import Button from '../../atoms/Button' import React from 'react' import colors from '../../../theme/colors' import fonts from '../../../theme/fonts' const PrimaryButton = ({ onPress, title, buttonStyle, titleStyle }) => { return ( ) } export default PrimaryButton const styles = StyleSheet.create({ button:{ backgroundColor: colors.tertiaryColor, maxWidth: '100%', width: '100%', alignItems:'center' }, buttonTextStyle:{ fontFamily: fonts.type.medium, color: colors.white } })