UNPKG

desmy-react

Version:

Introducing an easy-to-use, lightning-fast React.js component that streamlines your development process. Our solution prioritizes simplicity, speed, and optimization, making it a breeze to build projects in React.

11 lines (10 loc) 356 B
import { default as React, Component, ChangeEvent } from 'react'; interface Props { searchValue: string; onChange: (e: ChangeEvent<HTMLInputElement>) => void; inputRef: React.RefObject<HTMLInputElement | null>; } export declare class DropdownSearch extends Component<Props> { render(): import("react/jsx-runtime").JSX.Element; } export {};