diff options
Diffstat (limited to 'src/components/onboarding/TaggDropDown.tsx')
-rw-r--r-- | src/components/onboarding/TaggDropDown.tsx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/components/onboarding/TaggDropDown.tsx b/src/components/onboarding/TaggDropDown.tsx index a45426ca..db531cc4 100644 --- a/src/components/onboarding/TaggDropDown.tsx +++ b/src/components/onboarding/TaggDropDown.tsx @@ -1,8 +1,8 @@ import React from 'react'; -import RNSelectPicker from 'react-native-picker-select'; -import {View, StyleSheet, TextInputProps} from 'react-native'; +import {StyleSheet, View} from 'react-native'; +import RNSelectPicker, {PickerSelectProps} from 'react-native-picker-select'; -interface TaggDropDownProps extends TextInputProps { +interface TaggDropDownProps extends PickerSelectProps { width?: number | string; } @@ -19,7 +19,6 @@ const TaggDropDown = React.forwardRef((props: TaggDropDownProps, ref: any) => { const styles = StyleSheet.create({ container: { - width: '66.67%', alignItems: 'center', marginVertical: 11, }, |