UNPKG

its-just-ui

Version:

ITS Just UI - React 18 & React 19 UI component library. 36+ accessible, TypeScript-native components with Tailwind CSS. Zero-config Material UI alternative for SaaS dashboards and enterprise apps.

10 lines (9 loc) 207 B
export interface SelectOption { value: string | number; label: string; disabled?: boolean; group?: string; icon?: React.ReactNode; description?: string; [key: string]: unknown; }