UNPKG

@carrot-farm/mongsil-ui

Version:
13 lines (12 loc) 569 B
import * as React from 'react'; export interface RadioProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'className' | 'value' | 'defaultValue' | 'checked' | 'onClick' | 'onChange'> { className?: string; value?: string; checked?: boolean; label?: React.ReactNode; variant?: 'emboss' | 'dent'; disabled?: boolean; onChange?: (value: boolean, name?: string) => void; } declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<HTMLLabelElement>>>; export default _default;