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) • 431 B
TypeScript
export interface RadioProps {
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 Radio: import('react').ForwardRefExoticComponent<RadioProps & import('react').RefAttributes<HTMLInputElement>>;