react-tailwindcss-select
Version:
A select input made with React js and Tailwind CSS
13 lines (12 loc) • 339 B
TypeScript
import React from "react";
import { Option, Options as ListOption } from "./type";
interface OptionsProps {
list: ListOption;
noOptionsMessage: string;
text: string;
isMultiple: boolean;
value: Option | Option[] | null;
primaryColor: string;
}
declare const Options: React.FC<OptionsProps>;
export default Options;