UNPKG

@makeen.io/material-ui-kit

Version:
14 lines (13 loc) 361 B
declare type SurveyRadioGroupProps = { name: string; onChange: Function; options: { label: any; value: any; }[]; question?: any; value: any; mode?: string; }; declare const SurveyRadioGroup: ({ value, name, onChange, options, question, mode, }: SurveyRadioGroupProps) => JSX.Element; export default SurveyRadioGroup;