Update BlueComponents.js

This commit is contained in:
Marcos Rodriguez Vélez 2021-09-17 08:01:12 -04:00 committed by Overtorment
parent d4cc2ea18f
commit 06b962761b

View File

@ -65,6 +65,7 @@ export const BlueButton = props => {
justifyContent: 'center',
alignItems: 'center',
paddingHorizontal: 16,
flexGrow: 1,
}}
accessibilityRole="button"
{...props}
@ -90,7 +91,6 @@ export const SecondButton = forwardRef((props, ref) => {
<TouchableOpacity
accessibilityRole="button"
style={{
flex: 1,
borderWidth: 0.7,
borderColor: 'transparent',
backgroundColor: backgroundColor,
@ -100,6 +100,8 @@ export const SecondButton = forwardRef((props, ref) => {
borderRadius: 25,
justifyContent: 'center',
alignItems: 'center',
paddingHorizontal: 16,
flexGrow: 1,
}}
{...props}
ref={ref}