UNPKG

react-admin-component

Version:
12 lines (11 loc) 355 B
/// <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;