UNPKG

chop-logic-components

Version:

React UI components library for Chop Logic project

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