@react-beauty/ui-radio
Version:
ui-radio
7 lines (6 loc) • 334 B
TypeScript
import { HTMLAttributes, ReactNode } from 'react';
export interface RadioInputLabelProps extends HTMLAttributes<HTMLLabelElement> {
children: ReactNode;
htmlFor?: string;
}
export declare const RadioInputLabel: import('react').ForwardRefExoticComponent<RadioInputLabelProps & import('react').RefAttributes<HTMLLabelElement>>;