UNPKG

@react-beauty/ui-checkbox

Version:

ui-checkbox

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