@carrot-farm/mongsil-ui
Version:
react ui library
13 lines (12 loc) • 569 B
TypeScript
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;