import { Feather } from "@expo/vector-icons"; import { InputForm } from "./inputForm"; export default function InputSearch({ onChange, width, value }: { onChange?: (val: string) => void, width?: number, value?: string }) { return ( } onChange={onChange} width={width} bg="white" value={value} mb={false} /> ) }