react-future-tint
Version:
A modern, customizable, and lightweight UI component library for React, providing responsive and accessible components to build user-friendly web applications.
15 lines (14 loc) • 442 B
TypeScript
import React from 'react';
interface Option {
[key: string]: any;
}
interface MultiSelectDropdownProps {
options: Option[];
selectedValue: string[];
type: 'arrayWithObject' | 'simpleArray';
placeholder?: string;
onChange: (option: any, type: 'arrayWithObject' | 'simpleArray') => void;
getParam?: string;
}
declare const MultiSelectDropdown: React.FC<MultiSelectDropdownProps>;
export default MultiSelectDropdown;