UNPKG

@boxyhq/react-ui

Version:

React UI components from BoxyHQ

19 lines (18 loc) 429 B
interface SelectProps { label: string; id?: string; name: string; options: Array<{ value: string; text: string; }>; classNames?: { select?: string; label?: string; }; disabled?: boolean; selectedValue: string; handleChange: (event: any) => void; } declare function Select(props: SelectProps): import("react/jsx-runtime").JSX.Element; export default Select;