react-admin-component
Version:
react library
12 lines (11 loc) • 355 B
TypeScript
/// <reference types="react" />
import { RadioGroupProps } from 'antd/lib/radio';
interface RadioButtonProps extends Omit<RadioGroupProps, 'options'> {
space?: string | number;
options: {
key?: any;
value?: any;
}[];
}
declare const RadioButton: (props: RadioButtonProps) => JSX.Element;
export default RadioButton;