UNPKG

cookie12-test-ui

Version:

React component library

18 lines (17 loc) 434 B
import React from 'react'; import './Dropdown.scss'; declare type item = { id: number; label: string; }; interface DropdownProps { disabled?: boolean; information?: boolean | string; onChange: (selectedValue: string) => any; options: item[]; label: string; placeholder?: boolean | string; selectedValue: string; } export declare const Dropdown: React.FC<DropdownProps>; export {};