reablocks
Version:
Component library for React
15 lines (14 loc) • 418 B
TypeScript
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 {};