@lifi/widget
Version:
LI.FI Widget for cross-chain bridging and swapping. It will drive your multi-chain strategy and attract new users from everywhere.
13 lines (12 loc) • 566 B
TypeScript
import type { FocusEventHandler, FormEventHandler } from 'react';
interface SearchInputProps {
name?: string;
value?: string;
placeholder?: string;
onChange?: FormEventHandler<HTMLInputElement>;
onBlur?: FocusEventHandler<HTMLInputElement>;
autoFocus?: boolean;
}
export declare const SearchInput: ({ name, placeholder, onChange, onBlur, value, autoFocus, }: SearchInputProps) => import("react/jsx-runtime").JSX.Element;
export declare const StickySearchInput: (props: SearchInputProps) => import("react/jsx-runtime").JSX.Element;
export {};