aboutsummaryrefslogtreecommitdiff
path: root/src/components/onboarding/TaggBigInput.tsx
diff options
context:
space:
mode:
authorAshm Walia <40498934+ashmgarv@users.noreply.github.com>2021-01-12 13:35:33 -0800
committerGitHub <noreply@github.com>2021-01-12 16:35:33 -0500
commitc758389ad2ebe98196d4618ec08dbf2b24d95bfa (patch)
tree1db37ccbe08d65dc689e0e9fd733aaf711681431 /src/components/onboarding/TaggBigInput.tsx
parent251c44edf33dd303ad5255cca95174eb72428543 (diff)
[TMA 472] Added option to be added to Taggs wait list (#168)
* Added screens to add to waitlist and a page to display on success of the same * Incorporated small comment
Diffstat (limited to 'src/components/onboarding/TaggBigInput.tsx')
-rw-r--r--src/components/onboarding/TaggBigInput.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/onboarding/TaggBigInput.tsx b/src/components/onboarding/TaggBigInput.tsx
index ba965465..4e8e1ef7 100644
--- a/src/components/onboarding/TaggBigInput.tsx
+++ b/src/components/onboarding/TaggBigInput.tsx
@@ -1,6 +1,7 @@
import React from 'react';
import {View, TextInput, StyleSheet, TextInputProps} from 'react-native';
import * as Animatable from 'react-native-animatable';
+import {TAGG_LIGHT_PURPLE} from '../../constants';
interface TaggBigInputProps extends TextInputProps {
valid?: boolean;
@@ -55,7 +56,7 @@ const styles = StyleSheet.create({
warning: {
fontSize: 14,
marginTop: 5,
- color: '#f4ddff',
+ color: TAGG_LIGHT_PURPLE,
maxWidth: 350,
textAlign: 'center',
},