chop-logic-components
Version:
React UI components library for Chop Logic project
15 lines (14 loc) • 413 B
TypeScript
import { default as React } from 'react';
import { ChopLogicSelectValue } from '../../../../models';
type Props = {
options: ChopLogicSelectValue[];
opened: boolean;
dropdownId: string;
comboboxId: string;
onClose: () => void;
selected?: ChopLogicSelectValue;
onSelect: (id: string) => void;
onClear: () => void;
};
export declare const SelectDropdown: React.FC<Props>;
export {};