UNPKG

chop-logic-components

Version:

React UI components library for Chop Logic project

8 lines (7 loc) 315 B
import { ChopLogicInputProps, ChopLogicSelectValue } from './_common'; export interface ChopLogicSelectProps extends ChopLogicInputProps { options: ChopLogicSelectValue[]; onChange?: (value?: ChopLogicSelectValue) => void; placeholder?: string; defaultValue?: string | number | readonly string[]; }