import React from 'react' import { StyleSheet, View } from 'react-native' import TextInput, { TextInputProps } from 'src/components/TextInput' import Search from 'src/icons/Search' import colors from 'src/styles/colors' const HEIGHT = 36 type Props = TextInputProps export default function SearchInput({ style, ...passThroughProps }: Props) { return ( ) } const styles = StyleSheet.create({ container: { flexDirection: 'row', alignItems: 'center', height: HEIGHT, borderRadius: HEIGHT / 2, borderColor: colors.borderSecondary, borderWidth: 1.5, paddingRight: 8, backgroundColor: colors.textInputBackground, }, iconContainer: { marginLeft: 17, marginRight: 13, }, input: { paddingVertical: 6, }, })