UNPKG

react-tailwindcss-select

Version:

A select input made with React js and Tailwind CSS

9 lines (8 loc) 190 B
import React from "react"; import { Option } from "./type"; interface ItemProps { item: Option; primaryColor: string; } declare const Item: React.FC<ItemProps>; export default Item;