UNPKG

@react-beauty/ui-checkbox

Version:

ui-checkbox

7 lines (6 loc) 343 B
import { HTMLAttributes, ReactNode } from 'react'; export interface CheckboxInputLabelProps extends HTMLAttributes<HTMLLabelElement> { children: ReactNode; htmlFor?: string; } export declare const CheckboxInputLabel: import('react').ForwardRefExoticComponent<CheckboxInputLabelProps & import('react').RefAttributes<HTMLLabelElement>>;