@synapsecns/widget
Version:
Widget library for interacting with the Synapse Protocol
8 lines (7 loc) • 314 B
TypeScript
import { Dispatch, SetStateAction } from 'react';
export declare const SearchInput: ({ inputValue, setInputValue, placeholder, isActive, }: {
inputValue: string;
setInputValue: Dispatch<SetStateAction<string>>;
placeholder: string;
isActive: boolean;
}) => import("react/jsx-runtime").JSX.Element;