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