@e-group/material-form
Version:
Custom react components for integrate redux-form.
19 lines (18 loc) • 509 B
TypeScript
export default RadioInputField;
declare function RadioInputField({ radioValue, input: { value, onChange }, meta, MuiInputProps, ...other }: {
[x: string]: any;
radioValue: any;
input: {
value: any;
onChange: any;
};
meta: any;
MuiInputProps: any;
}): JSX.Element;
declare namespace RadioInputField {
namespace propTypes {
const input: PropTypes.Validator<object>;
const meta: PropTypes.Validator<object>;
}
}
import PropTypes from "prop-types";