UNPKG

@etchemkay/react-tailwindcss-select

Version:

A select input made with React js and Tailwind CSS

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