UNPKG

@angelineuniverse/design

Version:
16 lines (15 loc) 390 B
import React from "react"; type InputSize = "small" | "medium" | "large"; export interface ModelSelectSearch { label: string; size?: InputSize; value?: any; value_label?: any; className?: string; placeholder?: string; isRequired?: boolean; readonly?: boolean; openChildren?: boolean; children?: React.ReactNode; search_method: (e:any) => void; }