import { Text } from 'react-native';
<FlatLabelInput
onChange={setText}
backgroundColor="#18181b"
selectedBackgroundColor="#27272a"
pressedBackgroundColor="#3f3f46"
labelStyle={{
color: '#71717a',
fontSize: 15,
labelFilledColor: '#52525b',
labelFilledFontSize: 11,
}}
textStyle={{ color: '#e4e4e7' }}
inputStyle={{ width: '100%' }}
inputConfig={{
placeholder: 'Password',
secureTextEntry: true,
className: 'docs-flat-input',
}}
rightComponent={(state) => (
<Text style={{ marginLeft: 8, opacity: state.focused ? 1 : 0.5 }}>��</Text>
)}
style={{ height: 56 }}
/>