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