UNPKG

reablocks

Version:
15 lines (14 loc) 418 B
import { FC, ReactNode } from 'react'; import { CheckboxTheme } from './CheckboxTheme'; interface CheckboxLabelProps { id?: string; label: string | ReactNode; size: 'small' | 'medium' | 'large' | string; disabled?: boolean; checked?: boolean; onChange?: () => void; labelClassName?: string; theme: CheckboxTheme; } export declare const CheckboxLabel: FC<CheckboxLabelProps>; export {};