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