@desci-labs/frontend-components
Version:
A library for commonly used components on the DeSci Frontend web apps
14 lines • 475 B
TypeScript
import { default as React } from 'react';
interface SearchableDropdownProps {
label: string;
placeholder: string;
options: string[];
selectedItems: string[];
onSelectionChange: (items: string[]) => void;
className?: string;
filterOptions: string[];
setFilterType: (value: string) => void;
}
declare const SearchableDropdown: React.FC<SearchableDropdownProps>;
export default SearchableDropdown;
//# sourceMappingURL=SearchableDropdown.d.ts.map