PrimaryButton.js 838 B

1234567891011121314151617181920212223242526272829303132333435
  1. import { StyleSheet, Text, View} from 'react-native'
  2. import Button from '../../atoms/Button'
  3. import React from 'react'
  4. import colors from '../../../theme/colors'
  5. import fonts from '../../../theme/fonts'
  6. const PrimaryButton = ({ onPress, title, buttonStyle, titleStyle }) => {
  7. return (
  8. <Button
  9. onPress={onPress}
  10. style={[styles.button,buttonStyle]}
  11. >
  12. <Text style={[styles.buttonTextStyle,titleStyle]}>
  13. {title}
  14. </Text>
  15. </Button>
  16. )
  17. }
  18. export default PrimaryButton
  19. const styles = StyleSheet.create({
  20. button:{
  21. backgroundColor: colors.tertiaryColor,
  22. maxWidth: '100%',
  23. width: '100%',
  24. alignItems:'center'
  25. },
  26. buttonTextStyle:{
  27. fontFamily: fonts.type.medium,
  28. color: colors.white
  29. }
  30. })