UNPKG

primereact

Version:

PrimeReact is an open source UI library for React featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with Prime

13 lines (10 loc) 267 B
import { IconType } from '../utils'; export type SelectItemOptionsType = SelectItem[] | any[]; export interface SelectItem { label?: string; value?: any; className?: string; icon?: IconType<SelectItem>; title?: string; disabled?: boolean; }