UNPKG

@bryancode/react-select

Version:

A customizable modular select built for React JS

8 lines (7 loc) 287 B
import { OptionInterface } from "."; import { InputHTMLAttributes } from "react"; export declare type InputProps = InputHTMLAttributes<HTMLInputElement>; export interface ContentRendererProps<Option = OptionInterface> extends InputProps { text: string; option?: Option; }