import React from "react"; import { GetProps, Input, View, ViewStyle } from "tamagui"; import Icons from "./icons"; type SearchInputProps = GetProps & { _container?: ViewStyle; }; const SearchInput = ({ _container, ...props }: SearchInputProps) => { return ( ); }; export default SearchInput;