diff options
author | Ivan Chen <ivan@tagg.id> | 2021-02-26 21:12:01 -0500 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-02-26 21:12:01 -0500 |
commit | 3af796dc78f94c421e1d941432b218827458537c (patch) | |
tree | 5155cedfddd655895da44c28e1739c2905e8e705 /src/components/onboarding | |
parent | aa93723fcd80a2d1e013f3c408edf83b75be63c9 (diff) |
assets, date picker default string
Diffstat (limited to 'src/components/onboarding')
-rw-r--r-- | src/components/onboarding/BirthDatePicker.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/onboarding/BirthDatePicker.tsx b/src/components/onboarding/BirthDatePicker.tsx index 6bef5798..c3a975dc 100644 --- a/src/components/onboarding/BirthDatePicker.tsx +++ b/src/components/onboarding/BirthDatePicker.tsx @@ -46,7 +46,7 @@ const BirthDatePicker = React.forwardRef( {...props}> {(updated || props.showPresetdate) && date ? moment(date).format('MM-DD-YYYY') - : 'Date of Birth'} + : 'Birthday'} </Text> </TouchableOpacity> <Modal visible={!hidden} transparent={true} animationType="fade"> @@ -92,7 +92,7 @@ const styles = StyleSheet.create({ input: { height: 40, fontSize: 16, - paddingTop: '2%', + paddingTop: 8, fontWeight: '600', borderColor: '#fffdfd', borderWidth: 2, |