UNPKG

@coconut-software/ui

Version:

React components for faster and easier web development.

8 lines (7 loc) 267 B
import type { ChangeEvent } from 'react'; interface SearchProps { defaultValue?: string; onChange?: (event: ChangeEvent<HTMLInputElement>) => void; } declare function Search({ defaultValue, onChange }: SearchProps): JSX.Element; export default Search;