UNPKG

react-native-ecommerce-components

Version:

A compilation of components to optimize the development of your ecommerce

15 lines (14 loc) 370 B
import React from 'react'; interface SearchBarProps { onSearch: (query: string) => void; placeholder?: string; clearButtonText?: string; styles?: { container?: object; input?: object; button?: object; buttonText?: object; }; } declare const SearchBar: React.FC<SearchBarProps>; export default SearchBar;