quantumai-design-system
Version:
퀀텀에이아이의 디자인 시스템
13 lines (12 loc) • 568 B
TypeScript
/// <reference types="react" />
import { MarginType, TypographyType } from '../../../types/styleType';
import { InputType } from '../../../types/elementType';
import { CHECKBOX_OPTION } from './options';
export interface ICheckboxProps extends InputType, MarginType {
size?: keyof typeof CHECKBOX_OPTION;
label?: string;
textType?: TypographyType;
handleChecked?: (checked: boolean) => void;
}
declare const Checkbox: import("react").ForwardRefExoticComponent<ICheckboxProps & import("react").RefAttributes<HTMLInputElement>>;
export default Checkbox;