UNPKG

brightyui

Version:

Brighty UI library

15 lines (14 loc) 377 B
import React, { FC } from 'react'; interface SearchBarProps { className?: string; value?: string; onChange?: (e: React.ChangeEvent<HTMLInputElement>) => void; placeholder?: string; name?: string; disabled?: boolean; clearable?: boolean; error?: string; hint?: string; } declare const SearchBar: FC<SearchBarProps>; export default SearchBar;