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

15 lines (14 loc) 466 B
import { default as React } from 'react'; export interface CheckboxProps { label?: string | React.ReactNode; checked: boolean; className?: string; id?: string; onChange: (checked: boolean) => void; disabled?: boolean; required?: boolean; name?: string; "aria-label"?: string; "aria-describedby"?: string; } export declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>;