UNPKG

chat-frontend-library

Version:

``` npm install chat-frontend-library --save ```

10 lines (9 loc) 304 B
import { ComponentProps, FC } from "react"; import "./SearchBar.scss"; interface SearchBarProps { placeholder: ComponentProps<"input">["placeholder"]; filterWord?: string; cbHandleChangeFilter?: (word: string) => void; } declare const SearchBar: FC<SearchBarProps>; export default SearchBar;