UNPKG

nextuiq

Version:

NextUIQ is a modern, lightweight, and developer-friendly UI component library for React and Next.js. Built with TypeScript and Tailwind CSS, it offers customizable, accessible, and performance-optimized components with built-in dark mode, theme customizat

8 lines (7 loc) 313 B
export interface LabelProps extends React.LabelHTMLAttributes<HTMLLabelElement> { htmlFor: string; required?: boolean; disabled?: boolean; "aria-label"?: string; } export declare const Label: import('react').ForwardRefExoticComponent<LabelProps & import('react').RefAttributes<HTMLLabelElement>>;