UNPKG

react-base-guide

Version:

react ui components

11 lines (10 loc) 322 B
import { DropdownRowProps } from "../dropdown-menu/interface"; import InputProps from "../input/interface"; interface AutoCompleteProps extends InputProps { rows?: DropdownRowProps[]; right?: boolean; up?: boolean; menuWidth?: string; menuHeight?: string; } export default AutoCompleteProps;