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