PrimaryOutlineButton.js 914 B

12345678910111213141516171819202122232425262728293031323334353637
  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. import PrimaryButton from './PrimaryButton';
  7. const PrimaryOutlineButton = props => {
  8. const {onPress, title, buttonStyle, titleStyle} = props;
  9. return (
  10. <PrimaryButton
  11. onPress={onPress}
  12. title={title}
  13. buttonStyle={[buttonStyle,styles.button]}
  14. titleStyle={[titleStyle,styles.buttonTextStyle]}
  15. />
  16. );
  17. };
  18. export default PrimaryOutlineButton;
  19. const styles = StyleSheet.create({
  20. button: {
  21. backgroundColor: colors.white,
  22. maxWidth: '100%',
  23. width: '100%',
  24. alignItems: 'center',
  25. borderColor:colors.primaryColor,
  26. borderRadius: 6,
  27. borderWidth: 1
  28. },
  29. buttonTextStyle: {
  30. fontFamily: fonts.type.medium,
  31. color: colors.secondaryColor,
  32. },
  33. });