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) 437 B
export interface RadioSmProps { id?: string; name: string; value: string; checked: boolean; label: string; onChange: (value: string) => void; className?: string; disabled?: boolean; required?: boolean; "aria-label"?: string; "aria-describedby"?: string; } export declare const RadioSm: import('react').ForwardRefExoticComponent<RadioSmProps & import('react').RefAttributes<HTMLInputElement>>;