UNPKG

reablocks

Version:
15 lines (13 loc) 402 B
import { CheckboxTheme } from './CheckboxTheme'; import { FC, ReactNode } from 'react'; interface CheckboxLabelProps { 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 {};