UNPKG

tailwindcss-react-select

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