UNPKG

chop-logic-components

Version:

React UI components library for Chop Logic project

11 lines (10 loc) 299 B
import { default as React } from 'react'; import { ChopLogicSelectValue } from '../../../../models'; type Props = { value: ChopLogicSelectValue; selected: boolean; onSelect: (id: string) => void; onClear: () => void; }; export declare const SelectOption: React.FC<Props>; export {};